Skip to content

Commit 29f5682

Browse files
Added more type definitions
1 parent 7202742 commit 29f5682

File tree

1 file changed

+76
-76
lines changed

1 file changed

+76
-76
lines changed

sdk.soap/sdk.soap.d.ts

Lines changed: 76 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ declare module Sdk
7979
* Sets the AllColumns property.
8080
* @params allColumns A boolean value.
8181
*/
82-
setAllColumns( allColumns: boolean );
82+
setAllColumns( allColumns: boolean ): void;
8383

8484
/**
8585
* Whether all columns will be returned.
@@ -309,7 +309,7 @@ declare module Sdk
309309
* Sets the collection of entity references.
310310
* @param entityReferences The entity references
311311
*/
312-
setEntityReferences( entityReferences: Sdk.Collection<EntityReference> );
312+
setEntityReferences( entityReferences: Sdk.Collection<EntityReference> ): void;
313313

314314

315315
/// prototype methods
@@ -842,7 +842,7 @@ declare module Sdk
842842
/**
843843
* Generates properties for the entity based on metadata.
844844
*/
845-
initializeSubClass( metadata ): void;
845+
initializeSubClass( metadata: any ): void;
846846

847847
/**
848848
* Sets the value of the specified attribute.
@@ -2092,38 +2092,38 @@ declare module Sdk.Mdq
20922092

20932093
export interface IEntityMetadata
20942094
{
2095-
ActivityTypeMask;
2095+
ActivityTypeMask: any;
20962096
Attributes: Array<IAttributeMetadata>;
2097-
AutoCreateAccessTeams;
2097+
AutoCreateAccessTeams: any;
20982098
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;
21072107
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;
21152115
IsActivity: boolean;
21162116
IsActivityParty: boolean;
2117-
IsAIRUpdated;
2118-
IsAuditEnabled;
2117+
IsAIRUpdated: any;
2118+
IsAuditEnabled: any;
21192119
IsAvailableOffline: boolean;
2120-
IsBusinessProcessEnabled;
2120+
IsBusinessProcessEnabled: any;
21212121
IsChildEntity: boolean;
2122-
IsConnectionsEnabled;
2122+
IsConnectionsEnabled: any;
21232123
IsCustomEntity: boolean;
2124-
IsCustomizable;
2124+
IsCustomizable: any;
21252125
IsDocumentManagementEnabled: boolean;
2126-
IsDuplicateDetectionEnabled;
2126+
IsDuplicateDetectionEnabled: any;
21272127
IsEnabledForCharts: boolean;
21282128
IsImportable: boolean;
21292129
IsIntersect: boolean;
@@ -2138,66 +2138,66 @@ declare module Sdk.Mdq
21382138
IsVisibleInMobile: boolean;
21392139
IsVisibleInMobileClient: boolean;
21402140
LogicalName: string;
2141-
ManyToManyRelationships;
2142-
ManyToOneRelationships;
2143-
MetadataId;
2141+
ManyToManyRelationships: any;
2142+
ManyToOneRelationships: any;
2143+
MetadataId: any;
21442144
ObjectTypeCode: number;
2145-
OneToManyRelationships;
2145+
OneToManyRelationships: any;
21462146
OwnershipType: string;
21472147
PrimaryIdAttribute: string;
2148-
PrimaryImageAttribute;
2148+
PrimaryImageAttribute: any;
21492149
PrimaryNameAttribute: string;
2150-
Privileges;
2151-
RecurrenceBaseEntityLogicalName;
2150+
Privileges: any;
2151+
RecurrenceBaseEntityLogicalName: any;
21522152
ReportViewName: string;
21532153
SchemaName: string;
21542154
}
21552155

21562156
export interface IAttributeMetadata
21572157
{
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;
22002200
Targets: string[];
2201-
YomiOf;
2201+
YomiOf: any;
22022202
}
22032203
}

0 commit comments

Comments
 (0)