Skip to content

Commit 8d24c30

Browse files
missing properties in TypeScript definition files
1 parent 2707077 commit 8d24c30

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

types/dynamics-web-api-callbacks.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,12 @@ declare namespace DynamicsWebApi {
610610
select?: string[];
611611
/**BATCH REQUESTS ONLY! Sets Content-ID header or references request in a Change Set. */
612612
contentId?: string;
613+
/**v.1.4.3 + Casts the AttributeMetadata to a specific type. (Used in requests to Attribute Metadata). */
614+
metadataAttributeType?: string;
615+
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
616+
navigationProperty?: string;
617+
/**v.1.4.3 + A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
618+
navigationPropertyKey?: string;
613619
}
614620

615621
interface UpdateRequest extends UpdateRequestBase {
@@ -620,12 +626,6 @@ declare namespace DynamicsWebApi {
620626
interface UpsertRequest extends UpdateRequestBase {
621627
/**Sets If-None-Match header value that enables to use conditional retrieval in applicable requests. */
622628
ifnonematch?: string;
623-
/**v.1.4.3 + Casts the AttributeMetadata to a specific type. (Used in requests to Attribute Metadata). */
624-
metadataAttributeType?: string;
625-
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
626-
navigationProperty?: string;
627-
/**v.1.4.3 + A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
628-
navigationPropertyKey?: string;
629629
}
630630

631631
interface DeleteRequest extends CRUDRequest {

types/dynamics-web-api.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,12 @@ declare namespace DynamicsWebApi {
514514
select?: string[];
515515
/**BATCH REQUESTS ONLY! Sets Content-ID header or references request in a Change Set. */
516516
contentId?: string;
517+
/**v.1.4.3 + Casts the AttributeMetadata to a specific type. (Used in requests to Attribute Metadata). */
518+
metadataAttributeType?: string;
519+
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
520+
navigationProperty?: string;
521+
/**v.1.4.3 + A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
522+
navigationPropertyKey?: string;
517523
}
518524

519525
interface UpdateRequest extends UpdateRequestBase {
@@ -524,12 +530,6 @@ declare namespace DynamicsWebApi {
524530
interface UpsertRequest extends UpdateRequestBase {
525531
/**Sets If-None-Match header value that enables to use conditional retrieval in applicable requests. */
526532
ifnonematch?: string;
527-
/**v.1.4.3 + Casts the AttributeMetadata to a specific type. (Used in requests to Attribute Metadata). */
528-
metadataAttributeType?: string;
529-
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
530-
navigationProperty?: string;
531-
/**v.1.4.3 + A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
532-
navigationPropertyKey?: string;
533533
}
534534

535535
interface DeleteRequest extends CRUDRequest {

0 commit comments

Comments
 (0)