mirror of
https://github.com/tutao/tutanota.git
synced 2025-12-08 06:09:50 +00:00
updated model
This commit is contained in:
parent
085a2ef0cc
commit
1af0f11aae
229 changed files with 457 additions and 581 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue