@@ -79,7 +79,7 @@ declare module Sdk
79
79
* Sets the AllColumns property.
80
80
* @params allColumns A boolean value.
81
81
*/
82
- setAllColumns ( allColumns : boolean ) ;
82
+ setAllColumns ( allColumns : boolean ) : void ;
83
83
84
84
/**
85
85
* Whether all columns will be returned.
@@ -309,7 +309,7 @@ declare module Sdk
309
309
* Sets the collection of entity references.
310
310
* @param entityReferences The entity references
311
311
*/
312
- setEntityReferences ( entityReferences : Sdk . Collection < EntityReference > ) ;
312
+ setEntityReferences ( entityReferences : Sdk . Collection < EntityReference > ) : void ;
313
313
314
314
315
315
/// prototype methods
@@ -842,7 +842,7 @@ declare module Sdk
842
842
/**
843
843
* Generates properties for the entity based on metadata.
844
844
*/
845
- initializeSubClass ( metadata ) : void ;
845
+ initializeSubClass ( metadata : any ) : void ;
846
846
847
847
/**
848
848
* Sets the value of the specified attribute.
@@ -2092,38 +2092,38 @@ declare module Sdk.Mdq
2092
2092
2093
2093
export interface IEntityMetadata
2094
2094
{
2095
- ActivityTypeMask ;
2095
+ ActivityTypeMask : any ;
2096
2096
Attributes : Array < IAttributeMetadata > ;
2097
- AutoCreateAccessTeams ;
2097
+ AutoCreateAccessTeams : any ;
2098
2098
AutoRouteToOwnerQueue : boolean ;
2099
- CanBeInManyToMany ;
2100
- CanBePrimaryEntityInRelationship ;
2101
- CanBeRelatedEntityInRelationship ;
2102
- CanCreateAttributes ;
2103
- CanCreateCharts ;
2104
- CanCreateForms ;
2105
- CanCreateViews ;
2106
- CanModifyAdditionalSettings ;
2099
+ CanBeInManyToMany : any ;
2100
+ CanBePrimaryEntityInRelationship : any ;
2101
+ CanBeRelatedEntityInRelationship : any ;
2102
+ CanCreateAttributes : any ;
2103
+ CanCreateCharts : any ;
2104
+ CanCreateForms : any ;
2105
+ CanCreateViews : any ;
2106
+ CanModifyAdditionalSettings : any ;
2107
2107
CanTriggerWorkflow : boolean ;
2108
- Description ;
2109
- DisplayCollectionName ;
2110
- DisplayName ;
2111
- IconLargeName ;
2112
- IconMediumName ;
2113
- IconSmallName ;
2114
- IntroducedVersion ;
2108
+ Description : any ;
2109
+ DisplayCollectionName : any ;
2110
+ DisplayName : any ;
2111
+ IconLargeName : any ;
2112
+ IconMediumName : any ;
2113
+ IconSmallName : any ;
2114
+ IntroducedVersion : any ;
2115
2115
IsActivity : boolean ;
2116
2116
IsActivityParty : boolean ;
2117
- IsAIRUpdated ;
2118
- IsAuditEnabled ;
2117
+ IsAIRUpdated : any ;
2118
+ IsAuditEnabled : any ;
2119
2119
IsAvailableOffline : boolean ;
2120
- IsBusinessProcessEnabled ;
2120
+ IsBusinessProcessEnabled : any ;
2121
2121
IsChildEntity : boolean ;
2122
- IsConnectionsEnabled ;
2122
+ IsConnectionsEnabled : any ;
2123
2123
IsCustomEntity : boolean ;
2124
- IsCustomizable ;
2124
+ IsCustomizable : any ;
2125
2125
IsDocumentManagementEnabled : boolean ;
2126
- IsDuplicateDetectionEnabled ;
2126
+ IsDuplicateDetectionEnabled : any ;
2127
2127
IsEnabledForCharts : boolean ;
2128
2128
IsImportable : boolean ;
2129
2129
IsIntersect : boolean ;
@@ -2138,66 +2138,66 @@ declare module Sdk.Mdq
2138
2138
IsVisibleInMobile : boolean ;
2139
2139
IsVisibleInMobileClient : boolean ;
2140
2140
LogicalName : string ;
2141
- ManyToManyRelationships ;
2142
- ManyToOneRelationships ;
2143
- MetadataId ;
2141
+ ManyToManyRelationships : any ;
2142
+ ManyToOneRelationships : any ;
2143
+ MetadataId : any ;
2144
2144
ObjectTypeCode : number ;
2145
- OneToManyRelationships ;
2145
+ OneToManyRelationships : any ;
2146
2146
OwnershipType : string ;
2147
2147
PrimaryIdAttribute : string ;
2148
- PrimaryImageAttribute ;
2148
+ PrimaryImageAttribute : any ;
2149
2149
PrimaryNameAttribute : string ;
2150
- Privileges ;
2151
- RecurrenceBaseEntityLogicalName ;
2150
+ Privileges : any ;
2151
+ RecurrenceBaseEntityLogicalName : any ;
2152
2152
ReportViewName : string ;
2153
2153
SchemaName : string ;
2154
2154
}
2155
2155
2156
2156
export interface IAttributeMetadata
2157
2157
{
2158
- AttributeOf ;
2159
- AttributeType ;
2160
- AttributeTypeName ;
2161
- CalculationOf ;
2162
- CanBeSecuredForCreate ;
2163
- CanBeSecuredForRead ;
2164
- CanBeSecuredForUpdate ;
2165
- CanModifyAdditionalSettings ;
2166
- ColumnNumber ;
2167
- DefaultFormValue ;
2168
- DefaultValue ;
2169
- DeprecatedVersion ;
2170
- Description ;
2171
- DisplayName ;
2172
- EntityLogicalName ;
2173
- Format ;
2174
- FormatName ;
2175
- ImeMode ;
2176
- IntroducedVersion ;
2177
- IsAuditEnabled ;
2178
- IsCustomAttribute ;
2179
- IsCustomizable ;
2180
- IsManaged ;
2181
- IsPrimaryId ;
2182
- IsPrimaryName ;
2183
- IsRenameable ;
2184
- IsSecured ;
2185
- IsValidForAdvancedFind ;
2186
- IsValidForCreate ;
2187
- IsValidForRead ;
2188
- IsValidForUpdate ;
2189
- LinkedAttributeId ;
2190
- LogicalName ;
2191
- MaxLength ;
2192
- MaxValue ;
2193
- MetadataId ;
2194
- MinValue ;
2195
- OptionSet ;
2196
- Precision ;
2197
- PrecisionSource ;
2198
- RequiredLevel ;
2199
- SchemaName ;
2158
+ AttributeOf : any ;
2159
+ AttributeType : any ;
2160
+ AttributeTypeName : any ;
2161
+ CalculationOf : any ;
2162
+ CanBeSecuredForCreate : any ;
2163
+ CanBeSecuredForRead : any ;
2164
+ CanBeSecuredForUpdate : any ;
2165
+ CanModifyAdditionalSettings : any ;
2166
+ ColumnNumber : any ;
2167
+ DefaultFormValue : any ;
2168
+ DefaultValue : any ;
2169
+ DeprecatedVersion : any ;
2170
+ Description : any ;
2171
+ DisplayName : any ;
2172
+ EntityLogicalName : any ;
2173
+ Format : any ;
2174
+ FormatName : any ;
2175
+ ImeMode : any ;
2176
+ IntroducedVersion : any ;
2177
+ IsAuditEnabled : any ;
2178
+ IsCustomAttribute : any ;
2179
+ IsCustomizable : any ;
2180
+ IsManaged : any ;
2181
+ IsPrimaryId : any ;
2182
+ IsPrimaryName : any ;
2183
+ IsRenameable : any ;
2184
+ IsSecured : any ;
2185
+ IsValidForAdvancedFind : any ;
2186
+ IsValidForCreate : any ;
2187
+ IsValidForRead : any ;
2188
+ IsValidForUpdate : any ;
2189
+ LinkedAttributeId : any ;
2190
+ LogicalName : any ;
2191
+ MaxLength : any ;
2192
+ MaxValue : any ;
2193
+ MetadataId : any ;
2194
+ MinValue : any ;
2195
+ OptionSet : any ;
2196
+ Precision : any ;
2197
+ PrecisionSource : any ;
2198
+ RequiredLevel : any ;
2199
+ SchemaName : any ;
2200
2200
Targets : string [ ] ;
2201
- YomiOf ;
2201
+ YomiOf : any ;
2202
2202
}
2203
2203
}
0 commit comments