updated model

This commit is contained in:
mpfau 2018-01-09 20:06:06 +01:00
parent 085a2ef0cc
commit 1af0f11aae
229 changed files with 457 additions and 581 deletions

View file

@ -72,6 +72,8 @@ type Customer = {
contactFormUserGroups:?UserAreaGroups;
customizations:Feature[];
userAreaGroups:?UserAreaGroups;
whitelabelChildren:?WhitelabelChildrenRef;
whitelabelParent:?WhitelabelParent;
adminGroup:Id;
adminGroups:Id;
customerGroup:Id;
@ -856,6 +858,7 @@ type DomainInfo = {
certificateExpiryDate:?Date;
domain:string;
validatedMxRecord:boolean;
whitelabelCode:string;
catchAllMailGroup:?Id;
certificate:?Id;
@ -1203,6 +1206,7 @@ type BrandingTheme = {
_ownerGroup:?Id;
_permissions:Id;
jsonTheme:string;
metaTags:string;
disabledFeatures:DisabledFeature[];
}
@ -1365,3 +1369,34 @@ type Feature = {
feature:NumberString;
}
type WhitelabelChild = {
_type: TypeRef<WhitelabelChild>;
_errors: Object;
_format:NumberString;
_id:IdTuple;
_ownerEncSessionKey:?Uint8Array;
_ownerGroup:?Id;
_permissions:Id;
comment:string;
createdDate:Date;
deletedDate:?Date;
mailAddress:string;
customer:Id;
}
type WhitelabelChildrenRef = {
_type: TypeRef<WhitelabelChildrenRef>;
_id:Id;
items:Id;
}
type WhitelabelParent = {
_type: TypeRef<WhitelabelParent>;
_id:Id;
customer:Id;
whitelabelChildInParent:IdTuple;
}

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PersistenceResourcePostReturnTypeRef: TypeRef<PersistenceResourcePostReturn> = new TypeRef("base", "PersistenceResourcePostReturn")
export const _TypeModel: TypeModel = {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ReadCounterDataTypeRef: TypeRef<ReadCounterData> = new TypeRef("monitor", "ReadCounterData")
export const _TypeModel: TypeModel = {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ReadCounterReturnTypeRef: TypeRef<ReadCounterReturn> = new TypeRef("monitor", "ReadCounterReturn")
export const _TypeModel: TypeModel = {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AccountingInfoTypeRef: TypeRef<AccountingInfo> = new TypeRef("sys", "AccountingInfo")
export const _TypeModel: TypeModel = {
@ -188,7 +187,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAccountingInfo(): AccountingInfo {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AuditLogEntryTypeRef: TypeRef<AuditLogEntry> = new TypeRef("sys", "AuditLogEntry")
export const _TypeModel: TypeModel = {
@ -116,7 +115,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAuditLogEntry(): AuditLogEntry {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AuditLogRefTypeRef: TypeRef<AuditLogRef> = new TypeRef("sys", "AuditLogRef")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAuditLogRef(): AuditLogRef {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AuthenticatedDeviceTypeRef: TypeRef<AuthenticatedDevice> = new TypeRef("sys", "AuthenticatedDevice")
export const _TypeModel: TypeModel = {
@ -51,7 +50,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAuthenticatedDevice(): AuthenticatedDevice {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AuthenticationTypeRef: TypeRef<Authentication> = new TypeRef("sys", "Authentication")
export const _TypeModel: TypeModel = {
@ -62,7 +61,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAuthentication(): Authentication {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AutoLoginDataDeleteTypeRef: TypeRef<AutoLoginDataDelete> = new TypeRef("sys", "AutoLoginDataDelete")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAutoLoginDataDelete(): AutoLoginDataDelete {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AutoLoginDataGetTypeRef: TypeRef<AutoLoginDataGet> = new TypeRef("sys", "AutoLoginDataGet")
export const _TypeModel: TypeModel = {
@ -44,7 +43,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAutoLoginDataGet(): AutoLoginDataGet {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AutoLoginDataReturnTypeRef: TypeRef<AutoLoginDataReturn> = new TypeRef("sys", "AutoLoginDataReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAutoLoginDataReturn(): AutoLoginDataReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const AutoLoginPostReturnTypeRef: TypeRef<AutoLoginPostReturn> = new TypeRef("sys", "AutoLoginPostReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createAutoLoginPostReturn(): AutoLoginPostReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BookingTypeRef: TypeRef<Booking> = new TypeRef("sys", "Booking")
export const _TypeModel: TypeModel = {
@ -124,7 +123,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBooking(): Booking {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BookingItemTypeRef: TypeRef<BookingItem> = new TypeRef("sys", "BookingItem")
export const _TypeModel: TypeModel = {
@ -87,7 +86,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBookingItem(): BookingItem {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BookingServiceDataTypeRef: TypeRef<BookingServiceData> = new TypeRef("sys", "BookingServiceData")
export const _TypeModel: TypeModel = {
@ -51,7 +50,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBookingServiceData(): BookingServiceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BookingsRefTypeRef: TypeRef<BookingsRef> = new TypeRef("sys", "BookingsRef")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBookingsRef(): BookingsRef {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BrandingDomainDataTypeRef: TypeRef<BrandingDomainData> = new TypeRef("sys", "BrandingDomainData")
export const _TypeModel: TypeModel = {
@ -60,7 +59,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBrandingDomainData(): BrandingDomainData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BrandingDomainDeleteDataTypeRef: TypeRef<BrandingDomainDeleteData> = new TypeRef("sys", "BrandingDomainDeleteData")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBrandingDomainDeleteData(): BrandingDomainDeleteData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BrandingThemeTypeRef: TypeRef<BrandingTheme> = new TypeRef("sys", "BrandingTheme")
export const _TypeModel: TypeModel = {
@ -56,6 +55,15 @@ export const _TypeModel: TypeModel = {
"cardinality": "One",
"final": false,
"encrypted": false
},
"metaTags": {
"name": "metaTags",
"id": 1279,
"since": 26,
"type": "String",
"cardinality": "One",
"final": false,
"encrypted": false
}
},
"associations": {
@ -70,7 +78,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBrandingTheme(): BrandingTheme {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BucketTypeRef: TypeRef<Bucket> = new TypeRef("sys", "Bucket")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBucket(): Bucket {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const BucketPermissionTypeRef: TypeRef<BucketPermission> = new TypeRef("sys", "BucketPermission")
export const _TypeModel: TypeModel = {
@ -107,7 +106,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createBucketPermission(): BucketPermission {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ChallengeTypeRef: TypeRef<Challenge> = new TypeRef("sys", "Challenge")
export const _TypeModel: TypeModel = {
@ -52,7 +51,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createChallenge(): Challenge {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ChangePasswordDataTypeRef: TypeRef<ChangePasswordData> = new TypeRef("sys", "ChangePasswordData")
export const _TypeModel: TypeModel = {
@ -69,7 +68,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createChangePasswordData(): ChangePasswordData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ChatTypeRef: TypeRef<Chat> = new TypeRef("sys", "Chat")
export const _TypeModel: TypeModel = {
@ -51,7 +50,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createChat(): Chat {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CreateCustomerServerPropertiesDataTypeRef: TypeRef<CreateCustomerServerPropertiesData> = new TypeRef("sys", "CreateCustomerServerPropertiesData")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCreateCustomerServerPropertiesData(): CreateCustomerServerPropertiesData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CreateCustomerServerPropertiesReturnTypeRef: TypeRef<CreateCustomerServerPropertiesReturn> = new TypeRef("sys", "CreateCustomerServerPropertiesReturn")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCreateCustomerServerPropertiesReturn(): CreateCustomerServerPropertiesReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CreateGroupDataTypeRef: TypeRef<CreateGroupData> = new TypeRef("sys", "CreateGroupData")
export const _TypeModel: TypeModel = {
@ -96,7 +95,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCreateGroupData(): CreateGroupData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CreateGroupListDataTypeRef: TypeRef<CreateGroupListData> = new TypeRef("sys", "CreateGroupListData")
export const _TypeModel: TypeModel = {
@ -52,7 +51,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCreateGroupListData(): CreateGroupListData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CreateSessionDataTypeRef: TypeRef<CreateSessionData> = new TypeRef("sys", "CreateSessionData")
export const _TypeModel: TypeModel = {
@ -80,7 +79,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCreateSessionData(): CreateSessionData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CreateSessionReturnTypeRef: TypeRef<CreateSessionReturn> = new TypeRef("sys", "CreateSessionReturn")
export const _TypeModel: TypeModel = {
@ -53,7 +52,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCreateSessionReturn(): CreateSessionReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomDomainDataTypeRef: TypeRef<CustomDomainData> = new TypeRef("sys", "CustomDomainData")
export const _TypeModel: TypeModel = {
@ -44,7 +43,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomDomainData(): CustomDomainData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomDomainReturnTypeRef: TypeRef<CustomDomainReturn> = new TypeRef("sys", "CustomDomainReturn")
export const _TypeModel: TypeModel = {
@ -43,7 +42,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomDomainReturn(): CustomDomainReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerTypeRef: TypeRef<Customer> = new TypeRef("sys", "Customer")
export const _TypeModel: TypeModel = {
@ -122,6 +121,24 @@ export const _TypeModel: TypeModel = {
"refType": "UserAreaGroups",
"final": true
},
"whitelabelChildren": {
"name": "whitelabelChildren",
"id": 1277,
"since": 26,
"type": "AGGREGATION",
"cardinality": "ZeroOrOne",
"refType": "WhitelabelChildrenRef",
"final": true
},
"whitelabelParent": {
"name": "whitelabelParent",
"id": 1276,
"since": 26,
"type": "AGGREGATION",
"cardinality": "ZeroOrOne",
"refType": "WhitelabelParent",
"final": true
},
"adminGroup": {
"name": "adminGroup",
"id": 37,
@ -214,7 +231,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomer(): Customer {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerDataTypeRef: TypeRef<CustomerData> = new TypeRef("sys", "CustomerData")
export const _TypeModel: TypeModel = {
@ -169,7 +168,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomerData(): CustomerData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerInfoTypeRef: TypeRef<CustomerInfo> = new TypeRef("sys", "CustomerInfo")
export const _TypeModel: TypeModel = {
@ -226,7 +225,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomerInfo(): CustomerInfo {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerInfoReturnTypeRef: TypeRef<CustomerInfoReturn> = new TypeRef("sys", "CustomerInfoReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomerInfoReturn(): CustomerInfoReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerPropertiesTypeRef: TypeRef<CustomerProperties> = new TypeRef("sys", "CustomerProperties")
export const _TypeModel: TypeModel = {
@ -88,7 +87,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomerProperties(): CustomerProperties {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerReturnTypeRef: TypeRef<CustomerReturn> = new TypeRef("sys", "CustomerReturn")
export const _TypeModel: TypeModel = {
@ -45,7 +44,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomerReturn(): CustomerReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const CustomerServerPropertiesTypeRef: TypeRef<CustomerServerProperties> = new TypeRef("sys", "CustomerServerProperties")
export const _TypeModel: TypeModel = {
@ -88,7 +87,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createCustomerServerProperties(): CustomerServerProperties {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DebitServicePutDataTypeRef: TypeRef<DebitServicePutData> = new TypeRef("sys", "DebitServicePutData")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDebitServicePutData(): DebitServicePutData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DeleteCustomerDataTypeRef: TypeRef<DeleteCustomerData> = new TypeRef("sys", "DeleteCustomerData")
export const _TypeModel: TypeModel = {
@ -62,7 +61,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDeleteCustomerData(): DeleteCustomerData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DisabledFeatureTypeRef: TypeRef<DisabledFeature> = new TypeRef("sys", "DisabledFeature")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDisabledFeature(): DisabledFeature {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DomainInfoTypeRef: TypeRef<DomainInfo> = new TypeRef("sys", "DomainInfo")
export const _TypeModel: TypeModel = {
@ -47,6 +46,15 @@ export const _TypeModel: TypeModel = {
"cardinality": "One",
"final": true,
"encrypted": false
},
"whitelabelCode": {
"name": "whitelabelCode",
"id": 1278,
"since": 26,
"type": "String",
"cardinality": "One",
"final": true,
"encrypted": false
}
},
"associations": {
@ -82,7 +90,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDomainInfo(): DomainInfo {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DomainMailAddressAvailabilityDataTypeRef: TypeRef<DomainMailAddressAvailabilityData> = new TypeRef("sys", "DomainMailAddressAvailabilityData")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDomainMailAddressAvailabilityData(): DomainMailAddressAvailabilityData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DomainMailAddressAvailabilityReturnTypeRef: TypeRef<DomainMailAddressAvailabilityReturn> = new TypeRef("sys", "DomainMailAddressAvailabilityReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDomainMailAddressAvailabilityReturn(): DomainMailAddressAvailabilityReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const DomainsRefTypeRef: TypeRef<DomainsRef> = new TypeRef("sys", "DomainsRef")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createDomainsRef(): DomainsRef {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const EmailSenderListElementTypeRef: TypeRef<EmailSenderListElement> = new TypeRef("sys", "EmailSenderListElement")
export const _TypeModel: TypeModel = {
@ -51,7 +50,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createEmailSenderListElement(): EmailSenderListElement {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const EntityEventBatchTypeRef: TypeRef<EntityEventBatch> = new TypeRef("sys", "EntityEventBatch")
export const _TypeModel: TypeModel = {
@ -61,7 +60,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createEntityEventBatch(): EntityEventBatch {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const EntityUpdateTypeRef: TypeRef<EntityUpdate> = new TypeRef("sys", "EntityUpdate")
export const _TypeModel: TypeModel = {
@ -69,7 +68,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createEntityUpdate(): EntityUpdate {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ExceptionTypeRef: TypeRef<Exception> = new TypeRef("sys", "Exception")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createException(): Exception {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ExternalPropertiesReturnTypeRef: TypeRef<ExternalPropertiesReturn> = new TypeRef("sys", "ExternalPropertiesReturn")
export const _TypeModel: TypeModel = {
@ -61,7 +60,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createExternalPropertiesReturn(): ExternalPropertiesReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ExternalUserReferenceTypeRef: TypeRef<ExternalUserReference> = new TypeRef("sys", "ExternalUserReference")
export const _TypeModel: TypeModel = {
@ -72,7 +71,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createExternalUserReference(): ExternalUserReference {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const FeatureTypeRef: TypeRef<Feature> = new TypeRef("sys", "Feature")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createFeature(): Feature {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const FileTypeRef: TypeRef<SysFile> = new TypeRef("sys", "File")
export const _TypeModel: TypeModel = {
@ -51,7 +50,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createFile(): SysFile {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const GroupTypeRef: TypeRef<Group> = new TypeRef("sys", "Group")
export const _TypeModel: TypeModel = {
@ -157,7 +156,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createGroup(): Group {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const GroupInfoTypeRef: TypeRef<GroupInfo> = new TypeRef("sys", "GroupInfo")
export const _TypeModel: TypeModel = {
@ -125,7 +124,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createGroupInfo(): GroupInfo {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const GroupMemberTypeRef: TypeRef<GroupMember> = new TypeRef("sys", "GroupMember")
export const _TypeModel: TypeModel = {
@ -82,7 +81,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createGroupMember(): GroupMember {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const GroupMembershipTypeRef: TypeRef<GroupMembership> = new TypeRef("sys", "GroupMembership")
export const _TypeModel: TypeModel = {
@ -82,7 +81,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createGroupMembership(): GroupMembership {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const GroupRootTypeRef: TypeRef<GroupRoot> = new TypeRef("sys", "GroupRoot")
export const _TypeModel: TypeModel = {
@ -81,7 +80,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createGroupRoot(): GroupRoot {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const InvoiceTypeRef: TypeRef<Invoice> = new TypeRef("sys", "Invoice")
export const _TypeModel: TypeModel = {
@ -171,7 +170,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createInvoice(): Invoice {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const InvoiceInfoTypeRef: TypeRef<InvoiceInfo> = new TypeRef("sys", "InvoiceInfo")
export const _TypeModel: TypeModel = {
@ -89,7 +88,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createInvoiceInfo(): InvoiceInfo {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const KeyPairTypeRef: TypeRef<KeyPair> = new TypeRef("sys", "KeyPair")
export const _TypeModel: TypeModel = {
@ -51,7 +50,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createKeyPair(): KeyPair {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const LoginTypeRef: TypeRef<Login> = new TypeRef("sys", "Login")
export const _TypeModel: TypeModel = {
@ -60,7 +59,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createLogin(): Login {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressAliasTypeRef: TypeRef<MailAddressAlias> = new TypeRef("sys", "MailAddressAlias")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressAlias(): MailAddressAlias {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressAliasServiceDataTypeRef: TypeRef<MailAddressAliasServiceData> = new TypeRef("sys", "MailAddressAliasServiceData")
export const _TypeModel: TypeModel = {
@ -44,7 +43,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressAliasServiceData(): MailAddressAliasServiceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressAliasServiceDataDeleteTypeRef: TypeRef<MailAddressAliasServiceDataDelete> = new TypeRef("sys", "MailAddressAliasServiceDataDelete")
export const _TypeModel: TypeModel = {
@ -53,7 +52,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressAliasServiceDataDelete(): MailAddressAliasServiceDataDelete {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressAliasServiceReturnTypeRef: TypeRef<MailAddressAliasServiceReturn> = new TypeRef("sys", "MailAddressAliasServiceReturn")
export const _TypeModel: TypeModel = {
@ -60,7 +59,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressAliasServiceReturn(): MailAddressAliasServiceReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressAvailabilityDataTypeRef: TypeRef<MailAddressAvailabilityData> = new TypeRef("sys", "MailAddressAvailabilityData")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressAvailabilityData(): MailAddressAvailabilityData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressAvailabilityReturnTypeRef: TypeRef<MailAddressAvailabilityReturn> = new TypeRef("sys", "MailAddressAvailabilityReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressAvailabilityReturn(): MailAddressAvailabilityReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MailAddressToGroupTypeRef: TypeRef<MailAddressToGroup> = new TypeRef("sys", "MailAddressToGroup")
export const _TypeModel: TypeModel = {
@ -62,7 +61,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMailAddressToGroup(): MailAddressToGroup {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MembershipAddDataTypeRef: TypeRef<MembershipAddData> = new TypeRef("sys", "MembershipAddData")
export const _TypeModel: TypeModel = {
@ -54,7 +53,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMembershipAddData(): MembershipAddData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const MembershipRemoveDataTypeRef: TypeRef<MembershipRemoveData> = new TypeRef("sys", "MembershipRemoveData")
export const _TypeModel: TypeModel = {
@ -45,7 +44,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createMembershipRemoveData(): MembershipRemoveData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const OtpChallengeTypeRef: TypeRef<OtpChallenge> = new TypeRef("sys", "OtpChallenge")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createOtpChallenge(): OtpChallenge {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PaymentDataServiceGetReturnTypeRef: TypeRef<PaymentDataServiceGetReturn> = new TypeRef("sys", "PaymentDataServiceGetReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPaymentDataServiceGetReturn(): PaymentDataServiceGetReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PaymentDataServicePutDataTypeRef: TypeRef<PaymentDataServicePutData> = new TypeRef("sys", "PaymentDataServicePutData")
export const _TypeModel: TypeModel = {
@ -114,7 +113,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPaymentDataServicePutData(): PaymentDataServicePutData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PaymentDataServicePutReturnTypeRef: TypeRef<PaymentDataServicePutReturn> = new TypeRef("sys", "PaymentDataServicePutReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPaymentDataServicePutReturn(): PaymentDataServicePutReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PdfInvoiceServiceDataTypeRef: TypeRef<PdfInvoiceServiceData> = new TypeRef("sys", "PdfInvoiceServiceData")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPdfInvoiceServiceData(): PdfInvoiceServiceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PdfInvoiceServiceReturnTypeRef: TypeRef<PdfInvoiceServiceReturn> = new TypeRef("sys", "PdfInvoiceServiceReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPdfInvoiceServiceReturn(): PdfInvoiceServiceReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PermissionTypeRef: TypeRef<Permission> = new TypeRef("sys", "Permission")
export const _TypeModel: TypeModel = {
@ -116,7 +115,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPermission(): Permission {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PhoneNumberTypeRef: TypeRef<PhoneNumber> = new TypeRef("sys", "PhoneNumber")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPhoneNumber(): PhoneNumber {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PremiumFeatureDataTypeRef: TypeRef<PremiumFeatureData> = new TypeRef("sys", "PremiumFeatureData")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPremiumFeatureData(): PremiumFeatureData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PremiumFeatureReturnTypeRef: TypeRef<PremiumFeatureReturn> = new TypeRef("sys", "PremiumFeatureReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPremiumFeatureReturn(): PremiumFeatureReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PriceDataTypeRef: TypeRef<PriceData> = new TypeRef("sys", "PriceData")
export const _TypeModel: TypeModel = {
@ -61,7 +60,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPriceData(): PriceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PriceItemDataTypeRef: TypeRef<PriceItemData> = new TypeRef("sys", "PriceItemData")
export const _TypeModel: TypeModel = {
@ -60,7 +59,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPriceItemData(): PriceItemData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PriceRequestDataTypeRef: TypeRef<PriceRequestData> = new TypeRef("sys", "PriceRequestData")
export const _TypeModel: TypeModel = {
@ -69,7 +68,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPriceRequestData(): PriceRequestData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PriceServiceDataTypeRef: TypeRef<PriceServiceData> = new TypeRef("sys", "PriceServiceData")
export const _TypeModel: TypeModel = {
@ -43,7 +42,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPriceServiceData(): PriceServiceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PriceServiceReturnTypeRef: TypeRef<PriceServiceReturn> = new TypeRef("sys", "PriceServiceReturn")
export const _TypeModel: TypeModel = {
@ -70,7 +69,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPriceServiceReturn(): PriceServiceReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PublicKeyDataTypeRef: TypeRef<PublicKeyData> = new TypeRef("sys", "PublicKeyData")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPublicKeyData(): PublicKeyData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PublicKeyReturnTypeRef: TypeRef<PublicKeyReturn> = new TypeRef("sys", "PublicKeyReturn")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPublicKeyReturn(): PublicKeyReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PushIdentifierTypeRef: TypeRef<PushIdentifier> = new TypeRef("sys", "PushIdentifier")
export const _TypeModel: TypeModel = {
@ -105,7 +104,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPushIdentifier(): PushIdentifier {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const PushIdentifierListTypeRef: TypeRef<PushIdentifierList> = new TypeRef("sys", "PushIdentifierList")
export const _TypeModel: TypeModel = {
@ -35,7 +34,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createPushIdentifierList(): PushIdentifierList {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const RegistrationCaptchaServiceDataTypeRef: TypeRef<RegistrationCaptchaServiceData> = new TypeRef("sys", "RegistrationCaptchaServiceData")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createRegistrationCaptchaServiceData(): RegistrationCaptchaServiceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const RegistrationCaptchaServiceReturnTypeRef: TypeRef<RegistrationCaptchaServiceReturn> = new TypeRef("sys", "RegistrationCaptchaServiceReturn")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createRegistrationCaptchaServiceReturn(): RegistrationCaptchaServiceReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const RegistrationConfigReturnTypeRef: TypeRef<RegistrationConfigReturn> = new TypeRef("sys", "RegistrationConfigReturn")
export const _TypeModel: TypeModel = {
@ -42,7 +41,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createRegistrationConfigReturn(): RegistrationConfigReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const RegistrationReturnTypeRef: TypeRef<RegistrationReturn> = new TypeRef("sys", "RegistrationReturn")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createRegistrationReturn(): RegistrationReturn {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const RegistrationServiceDataTypeRef: TypeRef<RegistrationServiceData> = new TypeRef("sys", "RegistrationServiceData")
export const _TypeModel: TypeModel = {
@ -123,7 +122,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createRegistrationServiceData(): RegistrationServiceData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const ResetPasswordDataTypeRef: TypeRef<ResetPasswordData> = new TypeRef("sys", "ResetPasswordData")
export const _TypeModel: TypeModel = {
@ -62,7 +61,7 @@ export const _TypeModel: TypeModel = {
}
},
"app": "sys",
"version": "25"
"version": "26"
}
export function createResetPasswordData(): ResetPasswordData {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const RootInstanceTypeRef: TypeRef<RootInstance> = new TypeRef("sys", "RootInstance")
export const _TypeModel: TypeModel = {
@ -60,7 +59,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createRootInstance(): RootInstance {

View file

@ -1,6 +1,5 @@
// @flow
import {create, TypeRef} from '../../common/EntityFunctions'
import {create, TypeRef} from "../../common/EntityFunctions"
export const SaltDataTypeRef: TypeRef<SaltData> = new TypeRef("sys", "SaltData")
export const _TypeModel: TypeModel = {
@ -33,7 +32,7 @@ export const _TypeModel: TypeModel = {
},
"associations": {},
"app": "sys",
"version": "25"
"version": "26"
}
export function createSaltData(): SaltData {

Some files were not shown because too many files have changed in this diff Show more