1091 lines
23 KiB
TypeScript
1091 lines
23 KiB
TypeScript
/**
|
|
* Allgemeine Events
|
|
*/
|
|
export class Common {
|
|
/**
|
|
* Abmelden
|
|
*/
|
|
static readonly logout = "Common.Logout";
|
|
|
|
/**
|
|
* Ändern der Spraches
|
|
*/
|
|
static readonly languageChange = "Common.Language.Change";
|
|
|
|
/**
|
|
* Zugriff auf eine Resource nicht gestattet
|
|
*/
|
|
static readonly unauthorized = "Common.Access.Unauthorized";
|
|
|
|
/**
|
|
* Zugriff auf eine Resource nicht gestattet
|
|
*/
|
|
static readonly forbidden = "Common.Access.Forbidden";
|
|
|
|
/**
|
|
* Zugriff auf eine Resource nicht gestattet - Abo nicht gültig
|
|
*/
|
|
static readonly subscriptionDenied = "Common.Access.SubscriptionDenied";
|
|
|
|
/**
|
|
* Anzeige der Audit-Infos einer Entität
|
|
*/
|
|
static readonly showAuditInfo = "Common.ShowAuditInfo";
|
|
}
|
|
|
|
/**
|
|
* Allgemeine Events
|
|
*/
|
|
export class Ui {
|
|
/**
|
|
* Ui Resize
|
|
*/
|
|
static readonly resize = "Ui.Resize";
|
|
|
|
/**
|
|
* Setzen des Benutzer-Profil-Bildes rechts oben
|
|
*/
|
|
static readonly setUserImage = "Ui.SetUserImage";
|
|
|
|
/**
|
|
* Setzen des Benutzer-Info rechts oben
|
|
*/
|
|
static readonly setUserInfo = "Ui.SetUserInfo";
|
|
}
|
|
|
|
/**
|
|
* Media-Events
|
|
*/
|
|
export class Media {
|
|
/**
|
|
* Datei wurde ausgewählt
|
|
*/
|
|
static readonly selected = "Media.FileSelected";
|
|
/**
|
|
* Zurück
|
|
*/
|
|
static readonly back = "Media.Back";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Benutzerverwaltung
|
|
*/
|
|
export class User {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "User.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "User.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "User.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "User.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um das Profil
|
|
*/
|
|
export class Profile {
|
|
|
|
/**
|
|
* 2 Faktor Authentifizierung aktivieren erfolgreich
|
|
*/
|
|
static readonly twoFactorEnableSuccess = "Profile.TwoFactorEnableSuccess";
|
|
|
|
/**
|
|
* 2 Faktor Authentifizierung aktivieren abgebrochen
|
|
*/
|
|
static readonly twoFactorEnableCancel = "Profile.TwoFactorEnableCancel";
|
|
}
|
|
|
|
/**
|
|
* Events rund um Fido
|
|
*/
|
|
export class Fido {
|
|
/**
|
|
* Fido2 Platform anlegen erfolgreich
|
|
*/
|
|
static readonly createPlatformSuccess = "Fido.CreatePlatformSuccess";
|
|
|
|
/**
|
|
* Fido2 Platform anlegen abgebrochen
|
|
*/
|
|
static readonly createPlatformCancel = "Fido.CreatePlatformCancel";
|
|
|
|
/**
|
|
* Fido2 Cross-Platform anlegen erfolgreich
|
|
*/
|
|
static readonly createCrossPlatformSuccess = "Fido.CreateCrossPlatformSuccess";
|
|
|
|
/**
|
|
* Fido2 Cross-Platform anlegen abgebrochen
|
|
*/
|
|
static readonly createCrossPlatformCancel = "Fido.CreateCrossPlatformCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Fido.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Fido.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Kunedn-Typen
|
|
*/
|
|
export class CustomerType {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "CustomerType.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "CustomerType.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "CustomerType.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "CustomerType.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Branchen
|
|
*/
|
|
export class CustomerBranch {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "CustomerBranch.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "CustomerBranch.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "CustomerBranch.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "CustomerBranch.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Kunden
|
|
*/
|
|
export class Customer {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Customer.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Customer.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Customer.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Customer.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Dateien / Filemanager
|
|
*/
|
|
export class FileManager {
|
|
/**
|
|
* Auswahl erfolgreich
|
|
*/
|
|
static readonly selectSuccess = "FileManager.SelectSuccess";
|
|
/**
|
|
* Auswahl abgebrochen
|
|
*/
|
|
static readonly selectCancel = "FileManager.SelectCancel";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Rubriken
|
|
*/
|
|
export class AdvertisementCategory {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "AdvertisementCategory.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "AdvertisementCategory.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "AdvertisementCategory.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "AdvertisementCategory.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Werbungen
|
|
*/
|
|
export class Advertisement {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Advertisement.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Advertisement.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Advertisement.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Advertisement.EditSuccess";
|
|
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "Advertisement.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Bannern
|
|
*/
|
|
export class Banner {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Banner.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Banner.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Banner.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Banner.EditSuccess";
|
|
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "Banner.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Pins
|
|
*/
|
|
export class Pin {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Pin.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Pin.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Pin.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Pin.EditSuccess";
|
|
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "Pin.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Gutscheinkampagnen
|
|
*/
|
|
export class VoucherCampaign {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "VoucherCampaign.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "VoucherCampaign.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "VoucherCampaign.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "VoucherCampaign.EditSuccess";
|
|
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "VoucherCampaign.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Abonnements
|
|
*/
|
|
export class Subscription {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Subscription.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Subscription.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Subscription.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Subscription.EditSuccess";
|
|
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "Subscription.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Abonnementbuchungen
|
|
*/
|
|
export class SubscriptionBooking {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "SubscriptionBooking.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "SubscriptionBooking.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "SubscriptionBooking.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "SubscriptionBooking.EditSuccess";
|
|
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "SubscriptionBooking.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von App-Usern
|
|
*/
|
|
export class AppUser {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "AppUser.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "AppUser.CreateSuccess";
|
|
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "AppUser.EditCancel";
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "AppUser.EditSuccess";
|
|
|
|
/**
|
|
* Eintrag Sperren abgebrochen
|
|
*/
|
|
static readonly lockCancel = "AppUser.LockCancel";
|
|
/**
|
|
* Eintrag Sperren
|
|
*/
|
|
static readonly lockSuccess = "AppUser.LockSuccess";
|
|
|
|
/**
|
|
* Profil bearbeiten abgebrochen
|
|
*/
|
|
static readonly profileCancel = "AppUser.ProfileCancel";
|
|
/**
|
|
* Profil bearbeiten
|
|
*/
|
|
static readonly profileSuccess = "AppUser.ProfileSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Hundeausführern
|
|
*/
|
|
export class DogWalker {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "DogWalker.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "DogWalker.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "DogWalker.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "DogWalker.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Steuern
|
|
*/
|
|
export class TaxRate {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "TaxRate.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "TaxRate.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "TaxRate.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "TaxRate.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Versandkosten
|
|
*/
|
|
export class ShipmentCost {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "ShipmentCost.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "ShipmentCost.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "ShipmentCost.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "ShipmentCost.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Produktkategorien
|
|
*/
|
|
export class ProductCategory {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "ProductCategory.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "ProductCategory.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "ProductCategory.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "ProductCategory.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Produkten
|
|
*/
|
|
export class Product {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Product.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Product.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Product.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Product.EditSuccess";
|
|
|
|
/**
|
|
* Ländereinstellungen zurück
|
|
*/
|
|
static readonly countriesBack = "Product.Countries.Back";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Produktländereinstellungen
|
|
*/
|
|
export class ProductCountry {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "ProductCountry.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "ProductCountry.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "ProductCountry.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "ProductCountry.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Branchen
|
|
*/
|
|
export class Branch {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Branch.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Branch.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Branch.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Branch.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Listungen
|
|
*/
|
|
export class Listing {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Listing.CreateCancel";
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Listing.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Listing.EditCancel";
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Listing.EditSuccess";
|
|
|
|
/**
|
|
* Eintrag buchen abgebrochen
|
|
*/
|
|
static readonly bookCancel = "Listing.BookCancel";
|
|
/**
|
|
* Eintrag gebucht
|
|
*/
|
|
static readonly bookSuccess = "Listing.BookSuccess";
|
|
/**
|
|
* Details zurück
|
|
*/
|
|
static readonly detailsBack = "Listing.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Maps
|
|
*/
|
|
export class Map {
|
|
/**
|
|
* Zurück
|
|
*/
|
|
static readonly back = "Map.Back";
|
|
|
|
/**
|
|
* Auswahl
|
|
*/
|
|
static readonly select = "Map.Select";
|
|
}
|
|
|
|
/**
|
|
* Events rund um den Shop
|
|
*/
|
|
export class Shop {
|
|
/**
|
|
* Zurück aus dem Shop
|
|
*/
|
|
static readonly back = "Shop.Back";
|
|
/**
|
|
* Zurück aus den Shop-Details
|
|
*/
|
|
static readonly backDetails = "Shop.BackDetails";
|
|
|
|
/**
|
|
* Eintrag zu Warenkorb hinzugefügen abgebrochen
|
|
*/
|
|
static readonly addToCartCancel = "Shop.AddToCartCancel";
|
|
|
|
/**
|
|
* Eintrag zum Warenkorb hinzufügen erforglreich
|
|
*/
|
|
static readonly addToCartSuccess = "Shop.AddToCartSuccess";
|
|
|
|
/**
|
|
* Anzeigen der der Übersicht im Checkout --> Cart
|
|
*/
|
|
static readonly showOverview = "Shop.ShowOverview";
|
|
|
|
/**
|
|
* Anzeigen der Adresseingabe im Checkout
|
|
*/
|
|
static readonly showAddress = "Shop.ShowAddress";
|
|
|
|
/**
|
|
* Anzeigen der Paymentauswahl im Checkout
|
|
*/
|
|
static readonly showPayment = "Shop.ShowPayment";
|
|
|
|
/**
|
|
* Anzeigen der Bestellzusammenfassung im Checkout
|
|
*/
|
|
static readonly showOrder = "Shop.ShowOrder";
|
|
|
|
/**
|
|
* Anzeigen der Bestellbestätigung
|
|
*/
|
|
static readonly showConfirmation = "Shop.ShowConfirmation";
|
|
}
|
|
|
|
/**
|
|
* Events rund um Bestellungen
|
|
*/
|
|
export class Order {
|
|
/**
|
|
* Zurück
|
|
*/
|
|
static readonly detailsBack = "Order.DetailsBack";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Hunderassen
|
|
*/
|
|
export class DogRace {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "DogRace.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "DogRace.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "DogRace.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "DogRace.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Hunden
|
|
*/
|
|
export class Dog {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Dog.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Dog.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Dog.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Dog.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von News Kategorien
|
|
*/
|
|
export class NewsCategory {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "NewsCategory.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "NewsCategory.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "NewsCategory.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "NewsCategory.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von News
|
|
*/
|
|
export class News {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "News.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "News.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "News.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "News.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Text-Seiten
|
|
*/
|
|
export class Page {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Page.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Page.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Page.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Page.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Feedbacks
|
|
*/
|
|
export class Feedback {
|
|
/**
|
|
* Details abgebrochen
|
|
*/
|
|
static readonly detailsCancel = "Feedback.DetailsCancel";
|
|
|
|
/**
|
|
* Details geändert
|
|
*/
|
|
static readonly detailsSuccess = "Feedback.DetailsSuccess";
|
|
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Transaktionsgebühren
|
|
*/
|
|
export class TransactionFee {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "TransactionFee.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "TransactionFee.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "TransactionFee.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "TransactionFee.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von GehGassi-Gebühren
|
|
*/
|
|
export class GehGassiFee {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "GehGassiFee.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "GehGassiFee.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "GehGassiFee.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "GehGassiFee.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Reklamationen
|
|
*/
|
|
export class WalkComplaint {
|
|
/**
|
|
* Details abgebrochen
|
|
*/
|
|
static readonly detailsCancel = "WalkComplaint.DetailsCancel";
|
|
|
|
/**
|
|
* Details geändert
|
|
*/
|
|
static readonly detailsSuccess = "WalkComplaint.DetailsSuccess";
|
|
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Systemnachrichten
|
|
*/
|
|
export class SystemMessage {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "SystemMessage.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "SystemMessage.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "SystemMessage.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "SystemMessage.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Meldungne
|
|
*/
|
|
export class AppUserReport {
|
|
/**
|
|
* Details abgebrochen
|
|
*/
|
|
static readonly detailsCancel = "AppUserReport.DetailsCancel";
|
|
|
|
/**
|
|
* Details geändert
|
|
*/
|
|
static readonly detailsSuccess = "AppUserReport.DetailsSuccess";
|
|
|
|
/**
|
|
* Anzeige Modul abgebrochen
|
|
*/
|
|
static readonly showCancel = "AppUserReport.ShowCancel";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von FAQs
|
|
*/
|
|
export class Faq {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "Faq.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "Faq.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "Faq.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "Faq.EditSuccess";
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von öffnetlichen Anfragen
|
|
*/
|
|
export class PublicWalkRequest {
|
|
/**
|
|
* Details abgebrochen
|
|
*/
|
|
static readonly detailsCancel = "PublicWalkRequest.DetailsCancel";
|
|
|
|
/**
|
|
* Details geändert
|
|
*/
|
|
static readonly detailsSuccess = "PublicWalkRequest.DetailsSuccess";
|
|
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Walks
|
|
*/
|
|
export class Walk {
|
|
/**
|
|
* Details abgebrochen
|
|
*/
|
|
static readonly detailsCancel = "Walk.DetailsCancel";
|
|
|
|
/**
|
|
* Details geändert
|
|
*/
|
|
static readonly detailsSuccess = "Walk.DetailsSuccess";
|
|
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von Konversationen
|
|
*/
|
|
export class Conversation {
|
|
/**
|
|
* Details abgebrochen
|
|
*/
|
|
static readonly detailsCancel = "Conversation.DetailsCancel";
|
|
|
|
/**
|
|
* Details geändert
|
|
*/
|
|
static readonly detailsSuccess = "Conversation.DetailsSuccess";
|
|
|
|
}
|
|
|
|
/**
|
|
* Events rund um die Verwaltung von FAQs
|
|
*/
|
|
export class AppVersion {
|
|
/**
|
|
* Eintrag hinzufügen abgebrochen
|
|
*/
|
|
static readonly createCancel = "AppVersion.CreateCancel";
|
|
|
|
/**
|
|
* Eintrag hinzugefügt
|
|
*/
|
|
static readonly createSuccess = "AppVersion.CreateSuccess";
|
|
/**
|
|
* Eintrag bearbeiten abgebrochen
|
|
*/
|
|
static readonly editCancel = "AppVersion.EditCancel";
|
|
|
|
/**
|
|
* Eintrag bearbeiten
|
|
*/
|
|
static readonly editSuccess = "AppVersion.EditSuccess";
|
|
} |