1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * * @module Enums * * @preferred * * @description Module for enums types defined in SenseNet helps you to use enums with dot notation. * * This module is autogenerated from Sense/Net metadata (/Odata/$metadata) * * ``` * let car = new ContentTypes.Car({ * Id: 1, * Name: 'MyCar', * DisplayName: 'My Car', * Style: Enum.Style.Cabrio * }); * ``` */ /** */ // tslint:disable:naming-convention export enum VersioningMode { Option0 = '0', Option1 = '1', Option2 = '2', Option3 = '3', } export enum InheritableVersioningMode { Option0 = '0', Option1 = '1', Option2 = '2', Option3 = '3', } export enum ApprovingMode { Option0 = '0', Option1 = '1', Option2 = '2', } export enum InheritableApprovingMode { Option0 = '0', Option1 = '1', Option2 = '2', } export enum SavingState { Finalized = '0', Creating = '1', Modifying = '2', ModifyingLocked = '3', } export enum GroupAttachments { email = 'email', root = 'root', subject = 'subject', sender = 'sender', } export enum EnableAutofilters { Default = '0', Enabled = '1', Disabled = '2', } export enum EnableLifespanFilter { Default = '0', Enabled = '1', Disabled = '2', } export enum Language { En = 'en', Hu = 'hu', } export enum MemoType { generic = 'generic', iso = 'iso', iaudit = 'iaudit', } export enum Priority { Option0 = '1', Option1 = '2', Option2 = '3', } export enum Status { pending = 'pending', active = 'active', completed = 'completed', deferred = 'deferred', waiting = 'waiting', } export enum QueryType { Public = 'Public', Private = 'Private', } export enum Gender { Option0 = '...', Female = 'Female', Male = 'Male', } export enum MaritalStatus { Option0 = '...', Single = 'Single', Married = 'Married', } |