You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- removed type PageType
- removed pageinput interface
- added pageType variable to each individual interface
- changed navigationOptions to be optional
* The logical name of the entity to load in the list control.
425
424
*/
@@ -436,7 +435,12 @@ declare namespace Xrm {
436
435
viewType?: ViewType;
437
436
}
438
437
439
-
interfaceEntityRecordextendsPageInput{
438
+
interfaceEntityRecord{
439
+
/**
440
+
* The type of the page
441
+
*/
442
+
pageType: "entityrecord";
443
+
440
444
/**
441
445
* Logical name of the entity to display the form for.
442
446
*/
@@ -493,7 +497,12 @@ declare namespace Xrm {
493
497
selectedStageId?: string;
494
498
}
495
499
496
-
interfaceWebResourceextendsPageInput{
500
+
interfaceWebResource{
501
+
/**
502
+
* The type of the page
503
+
*/
504
+
pageType: "webresource";
505
+
497
506
/**
498
507
* The name of the web resource to load.
499
508
*/
@@ -560,7 +569,7 @@ declare namespace Xrm {
560
569
* @param pageInput Input about the page to navigate to. The object definition changes depending on the type of page to navigate to: entity list or HTML web resource.
561
570
* @param navigationOptions Options for navigating to a page: whether to open inline or in a dialog. If you don't specify this parameter, page is opened inline by default.
0 commit comments