gd-sprest-def 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/lib/Microsoft/Office/Server/Search/REST/complextypes.d.ts +37 -37
  2. package/lib/Microsoft/Online/SharePoint/MigrationCenter/Common/complextypes.d.ts +4 -4
  3. package/lib/Microsoft/Online/SharePoint/MigrationCenter/Service/complextypes.d.ts +3 -3
  4. package/lib/Microsoft/Online/SharePoint/TenantAdministration/complextypes.d.ts +7 -7
  5. package/lib/Microsoft/SharePoint/Activities/complextypes.d.ts +12 -12
  6. package/lib/Microsoft/SharePoint/AddToOneDrive/complextypes.d.ts +3 -3
  7. package/lib/Microsoft/SharePoint/Administration/complextypes.d.ts +1 -1
  8. package/lib/Microsoft/SharePoint/Client/Search/Analytics/complextypes.d.ts +3 -3
  9. package/lib/Microsoft/SharePoint/Client/Search/Query/complextypes.d.ts +10 -10
  10. package/lib/Microsoft/SharePoint/Comments/complextypes.d.ts +1 -1
  11. package/lib/Microsoft/SharePoint/News/DataModel/complextypes.d.ts +1 -1
  12. package/lib/Microsoft/SharePoint/Portal/Home/complextypes.d.ts +3 -3
  13. package/lib/Microsoft/SharePoint/Portal/Project/complextypes.d.ts +4 -4
  14. package/lib/Microsoft/SharePoint/Portal/complextypes.d.ts +18 -18
  15. package/lib/Microsoft/SharePoint/Publishing/Diagnostics/complextypes.d.ts +2 -2
  16. package/lib/Microsoft/SharePoint/QuickActionMessageCard/complextypes.d.ts +7 -7
  17. package/lib/Microsoft/SharePoint/Utilities/WebTemplateExtensions/complextypes.d.ts +7 -7
  18. package/lib/PS/complextypes.d.ts +8 -8
  19. package/lib/SP/Directory/Provider/complextypes.d.ts +6 -6
  20. package/lib/SP/MetadataNavigation/complextypes.d.ts +1 -1
  21. package/lib/SP/MicroService/complextypes.d.ts +2 -2
  22. package/lib/SP/Microfeed/complextypes.d.ts +12 -12
  23. package/lib/SP/PageInstrumentation/complextypes.d.ts +1 -1
  24. package/lib/SP/Publishing/PortalLaunch/complextypes.d.ts +3 -3
  25. package/lib/SP/Publishing/complextypes.d.ts +20 -20
  26. package/lib/SP/Sharing/complextypes.d.ts +8 -8
  27. package/lib/SP/Social/complextypes.d.ts +9 -9
  28. package/lib/SP/Taxonomy/ContentTypeSync/complextypes.d.ts +2 -2
  29. package/lib/SP/UserProfiles/complextypes.d.ts +2 -2
  30. package/lib/SP/Utilities/complextypes.d.ts +7 -7
  31. package/lib/SP/WebParts/complextypes.d.ts +1 -1
  32. package/lib/SP/complextypes.d.ts +46 -46
  33. package/main.js +6 -2
  34. package/package.json +1 -1
@@ -23,7 +23,7 @@ export interface ContextConditionCollections {
23
23
  export interface CustomResult {
24
24
  GroupTemplateId?: string;
25
25
  ItemTemplateId?: string;
26
- Properties?: Array<SP.KeyValue>;
26
+ Properties?: { results: Array<SP.KeyValue> };
27
27
  ResultTitle?: string;
28
28
  ResultTitleUrl?: string;
29
29
  Table?: SP.SimpleDataTable;
@@ -41,7 +41,7 @@ export interface CustomResultCollections {
41
41
  * ExpandedQueryParameters
42
42
  **********************************************/
43
43
  export interface ExpandedQueryParameters {
44
- Properties?: Array<SP.KeyValue>;
44
+ Properties?: { results: Array<SP.KeyValue> };
45
45
  }
46
46
 
47
47
  /*********************************************
@@ -56,14 +56,14 @@ export interface ExpandedQueryParametersCollections {
56
56
  **********************************************/
57
57
  export interface PromotedResultQueryRule {
58
58
  Contact?: string;
59
- ContextConditions?: Array<Microsoft.Office.Server.Search.REST.ContextCondition>;
59
+ ContextConditions?: { results: Array<Microsoft.Office.Server.Search.REST.ContextCondition> };
60
60
  CreationDate?: any;
61
61
  DisplayName?: string;
62
62
  EndDate?: any;
63
63
  IsPromotedResultsOnly?: boolean;
64
64
  LastModifiedDate?: any;
65
- PromotedResults?: Array<Microsoft.Office.Server.Search.REST.PromotedResults>;
66
- QueryConditions?: Array<Microsoft.Office.Server.Search.REST.QueryCondition>;
65
+ PromotedResults?: { results: Array<Microsoft.Office.Server.Search.REST.PromotedResults> };
66
+ QueryConditions?: { results: Array<Microsoft.Office.Server.Search.REST.QueryCondition> };
67
67
  ReviewDate?: any;
68
68
  StartDate?: any;
69
69
  }
@@ -101,7 +101,7 @@ export interface QueryCondition {
101
101
  MatchingOptions?: string;
102
102
  QueryConditionType?: string;
103
103
  SubjectTermsOrigin?: string;
104
- Terms?: Array<string>;
104
+ Terms?: { results: Array<string> };
105
105
  }
106
106
 
107
107
  /*********************************************
@@ -115,7 +115,7 @@ export interface QueryConditionCollections {
115
115
  * PromotedResultsOperationsResult
116
116
  **********************************************/
117
117
  export interface PromotedResultsOperationsResult {
118
- Result?: Array<Microsoft.Office.Server.Search.REST.PromotedResultQueryRule>;
118
+ Result?: { results: Array<Microsoft.Office.Server.Search.REST.PromotedResultQueryRule> };
119
119
  SearchObjectOwner?: Microsoft.Office.Server.Search.REST.SearchObjectOwnerResult;
120
120
  }
121
121
 
@@ -163,9 +163,9 @@ export interface QueryConfigurationCollections {
163
163
  * QueryContext
164
164
  **********************************************/
165
165
  export interface QueryContext {
166
- GroupObjectIds?: Array<any>;
166
+ GroupObjectIds?: { results: Array<any> };
167
167
  PortalUrl?: string;
168
- RoleIds?: Array<any>;
168
+ RoleIds?: { results: Array<any> };
169
169
  SpSiteId?: any;
170
170
  SpWebId?: any;
171
171
  TenantInstanceId?: any;
@@ -183,7 +183,7 @@ export interface QueryContextCollections {
183
183
  **********************************************/
184
184
  export interface QueryRoutingInfo {
185
185
  QueryState?: number;
186
- SearchEndpoints?: Array<Microsoft.Office.Server.Search.REST.SearchEndpoints>;
186
+ SearchEndpoints?: { results: Array<Microsoft.Office.Server.Search.REST.SearchEndpoints> };
187
187
  }
188
188
 
189
189
  /*********************************************
@@ -230,7 +230,7 @@ export interface QueryPropertyCollections {
230
230
  * QueryResult
231
231
  **********************************************/
232
232
  export interface QueryResult {
233
- CustomResults?: Array<Microsoft.Office.Server.Search.REST.CustomResult>;
233
+ CustomResults?: { results: Array<Microsoft.Office.Server.Search.REST.CustomResult> };
234
234
  QueryId?: string;
235
235
  QueryRuleId?: any;
236
236
  RefinementResults?: Microsoft.Office.Server.Search.REST.RefinementResults;
@@ -251,8 +251,8 @@ export interface QueryResultCollections {
251
251
  export interface RefinementResults {
252
252
  GroupTemplateId?: string;
253
253
  ItemTemplateId?: string;
254
- Properties?: Array<SP.KeyValue>;
255
- Refiners?: Array<Microsoft.Office.Server.Search.REST.Refiner>;
254
+ Properties?: { results: Array<SP.KeyValue> };
255
+ Refiners?: { results: Array<Microsoft.Office.Server.Search.REST.Refiner> };
256
256
  ResultTitle?: string;
257
257
  ResultTitleUrl?: string;
258
258
  }
@@ -268,7 +268,7 @@ export interface RefinementResultsCollections {
268
268
  * Refiner
269
269
  **********************************************/
270
270
  export interface Refiner {
271
- Entries?: Array<Microsoft.Office.Server.Search.REST.RefinerEntry>;
271
+ Entries?: { results: Array<Microsoft.Office.Server.Search.REST.RefinerEntry> };
272
272
  Name?: string;
273
273
  }
274
274
 
@@ -302,7 +302,7 @@ export interface RefinerEntryCollections {
302
302
  export interface RelevantResults {
303
303
  GroupTemplateId?: string;
304
304
  ItemTemplateId?: string;
305
- Properties?: Array<SP.KeyValue>;
305
+ Properties?: { results: Array<SP.KeyValue> };
306
306
  ResultTitle?: string;
307
307
  ResultTitleUrl?: string;
308
308
  RowCount?: number;
@@ -324,8 +324,8 @@ export interface RelevantResultsCollections {
324
324
  export interface SpecialTermResults {
325
325
  GroupTemplateId?: string;
326
326
  ItemTemplateId?: string;
327
- Properties?: Array<SP.KeyValue>;
328
- Results?: Array<Microsoft.Office.Server.Search.REST.SpecialTermResult>;
327
+ Properties?: { results: Array<SP.KeyValue> };
328
+ Results?: { results: Array<Microsoft.Office.Server.Search.REST.SpecialTermResult> };
329
329
  ResultTitle?: string;
330
330
  ResultTitleUrl?: string;
331
331
  }
@@ -378,7 +378,7 @@ export interface ReportAbandonedQueriesDataCollections {
378
378
  **********************************************/
379
379
  export interface ReportAbandonedQueriesItem {
380
380
  Date?: string;
381
- Report?: Array<Microsoft.Office.Server.Search.REST.ReportAbandonedQueriesData>;
381
+ Report?: { results: Array<Microsoft.Office.Server.Search.REST.ReportAbandonedQueriesData> };
382
382
  }
383
383
 
384
384
  /*********************************************
@@ -406,7 +406,7 @@ export interface ReportBaseCollections {
406
406
  * ReportAbandonedQueries
407
407
  **********************************************/
408
408
  export interface ReportAbandonedQueries {
409
- Reports?: Array<Microsoft.Office.Server.Search.REST.ReportAbandonedQueriesItem>;
409
+ Reports?: { results: Array<Microsoft.Office.Server.Search.REST.ReportAbandonedQueriesItem> };
410
410
  }
411
411
 
412
412
  /*********************************************
@@ -438,7 +438,7 @@ export interface ReportNoResultDataCollections {
438
438
  **********************************************/
439
439
  export interface ReportNoResultItem {
440
440
  Date?: string;
441
- Report?: Array<Microsoft.Office.Server.Search.REST.ReportNoResultData>;
441
+ Report?: { results: Array<Microsoft.Office.Server.Search.REST.ReportNoResultData> };
442
442
  }
443
443
 
444
444
  /*********************************************
@@ -452,7 +452,7 @@ export interface ReportNoResultItemCollections {
452
452
  * ReportNoResultQueries
453
453
  **********************************************/
454
454
  export interface ReportNoResultQueries {
455
- Reports?: Array<Microsoft.Office.Server.Search.REST.ReportNoResultItem>;
455
+ Reports?: { results: Array<Microsoft.Office.Server.Search.REST.ReportNoResultItem> };
456
456
  }
457
457
 
458
458
  /*********************************************
@@ -483,7 +483,7 @@ export interface ReportNumberOfQueriesDataCollections {
483
483
  **********************************************/
484
484
  export interface ReportNumberOfQueriesItem {
485
485
  Date?: string;
486
- Report?: Array<Microsoft.Office.Server.Search.REST.ReportNumberOfQueriesData>;
486
+ Report?: { results: Array<Microsoft.Office.Server.Search.REST.ReportNumberOfQueriesData> };
487
487
  }
488
488
 
489
489
  /*********************************************
@@ -497,7 +497,7 @@ export interface ReportNumberOfQueriesItemCollections {
497
497
  * ReportNumberOfQueries
498
498
  **********************************************/
499
499
  export interface ReportNumberOfQueries {
500
- Reports?: Array<Microsoft.Office.Server.Search.REST.ReportNumberOfQueriesItem>;
500
+ Reports?: { results: Array<Microsoft.Office.Server.Search.REST.ReportNumberOfQueriesItem> };
501
501
  }
502
502
 
503
503
  /*********************************************
@@ -536,7 +536,7 @@ export interface ReportQueryRulesDataCollections {
536
536
  **********************************************/
537
537
  export interface ReportQueryRulesItem {
538
538
  Date?: string;
539
- Report?: Array<Microsoft.Office.Server.Search.REST.ReportQueryRulesData>;
539
+ Report?: { results: Array<Microsoft.Office.Server.Search.REST.ReportQueryRulesData> };
540
540
  }
541
541
 
542
542
  /*********************************************
@@ -550,7 +550,7 @@ export interface ReportQueryRulesItemCollections {
550
550
  * ReportQueryRules
551
551
  **********************************************/
552
552
  export interface ReportQueryRules {
553
- Reports?: Array<Microsoft.Office.Server.Search.REST.ReportQueryRulesItem>;
553
+ Reports?: { results: Array<Microsoft.Office.Server.Search.REST.ReportQueryRulesItem> };
554
554
  }
555
555
 
556
556
  /*********************************************
@@ -582,7 +582,7 @@ export interface ReportTopQueriesDataCollections {
582
582
  **********************************************/
583
583
  export interface ReportTopQueriesItem {
584
584
  Date?: string;
585
- Report?: Array<Microsoft.Office.Server.Search.REST.ReportTopQueriesData>;
585
+ Report?: { results: Array<Microsoft.Office.Server.Search.REST.ReportTopQueriesData> };
586
586
  }
587
587
 
588
588
  /*********************************************
@@ -596,7 +596,7 @@ export interface ReportTopQueriesItemCollections {
596
596
  * ReportTopQueries
597
597
  **********************************************/
598
598
  export interface ReportTopQueries {
599
- Reports?: Array<Microsoft.Office.Server.Search.REST.ReportTopQueriesItem>;
599
+ Reports?: { results: Array<Microsoft.Office.Server.Search.REST.ReportTopQueriesItem> };
600
600
  }
601
601
 
602
602
  /*********************************************
@@ -642,28 +642,28 @@ export interface SearchRequest {
642
642
  GenerateBlockRankLog?: boolean;
643
643
  HiddenConstraints?: string;
644
644
  HitHighlightedMultivaluePropertyLimit?: number;
645
- HitHighlightedProperties?: Array<string>;
645
+ HitHighlightedProperties?: { results: Array<string> };
646
646
  ImpressionId?: string;
647
647
  MaxSnippetLength?: number;
648
648
  OLSQuerySession?: string;
649
649
  PersonalizationData?: any;
650
650
  ProcessBestBets?: boolean;
651
651
  ProcessPersonalFavorites?: boolean;
652
- Properties?: Array<Microsoft.Office.Server.Search.REST.QueryProperty>;
653
- PropertiesToGenerateAcronyms?: Array<string>;
652
+ Properties?: { results: Array<Microsoft.Office.Server.Search.REST.QueryProperty> };
653
+ PropertiesToGenerateAcronyms?: { results: Array<string> };
654
654
  QueryTag?: string;
655
655
  QueryTemplate?: string;
656
656
  QueryTemplatePropertiesUrl?: string;
657
657
  Querytext?: string;
658
658
  RankingModelId?: string;
659
- RefinementFilters?: Array<string>;
659
+ RefinementFilters?: { results: Array<string> };
660
660
  Refiners?: string;
661
- ReorderingRules?: Array<Microsoft.SharePoint.Client.Search.Query.ReorderingRule>;
661
+ ReorderingRules?: { results: Array<Microsoft.SharePoint.Client.Search.Query.ReorderingRule> };
662
662
  ResultsUrl?: string;
663
663
  RowLimit?: number;
664
664
  RowsPerPage?: number;
665
- SelectProperties?: Array<string>;
666
- SortList?: Array<Microsoft.SharePoint.Client.Search.Query.Sort>;
665
+ SelectProperties?: { results: Array<string> };
666
+ SortList?: { results: Array<Microsoft.SharePoint.Client.Search.Query.Sort> };
667
667
  SourceId?: any;
668
668
  StartRow?: number;
669
669
  SummaryLength?: number;
@@ -689,10 +689,10 @@ export interface SearchRequestCollections {
689
689
  export interface SearchResult {
690
690
  ElapsedTime?: number;
691
691
  PrimaryQueryResult?: Microsoft.Office.Server.Search.REST.QueryResult;
692
- Properties?: Array<SP.KeyValue>;
693
- SecondaryQueryResults?: Array<Microsoft.Office.Server.Search.REST.QueryResult>;
692
+ Properties?: { results: Array<SP.KeyValue> };
693
+ SecondaryQueryResults?: { results: Array<Microsoft.Office.Server.Search.REST.QueryResult> };
694
694
  SpellingSuggestion?: string;
695
- TriggeredRules?: Array<any>;
695
+ TriggeredRules?: { results: Array<any> };
696
696
  }
697
697
 
698
698
  /*********************************************
@@ -6,7 +6,7 @@ import { Microsoft } from "../../../../../";
6
6
  **********************************************/
7
7
  export interface BatchCreationResult {
8
8
  CreatedCount?: number;
9
- CreatedTaskIdList?: Array<any>;
9
+ CreatedTaskIdList?: { results: Array<any> };
10
10
  ErrorCode?: string;
11
11
  ErrorMessage?: string;
12
12
  FieldError?: string;
@@ -26,11 +26,11 @@ export interface BatchCreationResultCollections {
26
26
  **********************************************/
27
27
  export interface BatchDeletionResult {
28
28
  DeletedCount?: number;
29
- DeletedTaskIdList?: Array<any>;
29
+ DeletedTaskIdList?: { results: Array<any> };
30
30
  ErrorCode?: string;
31
31
  ErrorMessage?: string;
32
32
  NotDeletedCount?: number;
33
- NotDeletedTaskIdList?: Array<any>;
33
+ NotDeletedTaskIdList?: { results: Array<any> };
34
34
  ProcessingMilliseconds?: number;
35
35
  }
36
36
 
@@ -162,7 +162,7 @@ export interface SPListInformation {
162
162
  AbsoluteUrl?: string;
163
163
  BaseTemplate?: number;
164
164
  DisplayTitle?: string;
165
- FolderInfoList?: Array<Microsoft.Online.SharePoint.MigrationCenter.Common.SPFolderInformation>;
165
+ FolderInfoList?: { results: Array<Microsoft.Online.SharePoint.MigrationCenter.Common.SPFolderInformation> };
166
166
  ID?: any;
167
167
  IsListPathUsedAsTitle?: boolean;
168
168
  IsMySiteDocumentLibrary?: boolean;
@@ -21,9 +21,9 @@ export interface MigrationPropertyCollections {
21
21
  * PerformanceDashboardData
22
22
  **********************************************/
23
23
  export interface PerformanceDashboardData {
24
- BottleneckList?: Array<string>;
25
- RecommendationList?: Array<string>;
26
- ThroughputTrend?: Array<Microsoft.Online.SharePoint.MigrationCenter.Service.ThroughputData>;
24
+ BottleneckList?: { results: Array<string> };
25
+ RecommendationList?: { results: Array<string> };
26
+ ThroughputTrend?: { results: Array<Microsoft.Online.SharePoint.MigrationCenter.Service.ThroughputData> };
27
27
  }
28
28
 
29
29
  /*********************************************
@@ -324,8 +324,8 @@ export interface RequireSecondaryContactCollections {
324
324
  * SecondaryAdministratorsFieldsData
325
325
  **********************************************/
326
326
  export interface SecondaryAdministratorsFieldsData {
327
- secondaryAdministratorEmails?: Array<string>;
328
- secondaryAdministratorLoginNames?: Array<string>;
327
+ secondaryAdministratorEmails?: { results: Array<string> };
328
+ secondaryAdministratorLoginNames?: { results: Array<string> };
329
329
  siteId?: any;
330
330
  }
331
331
 
@@ -477,7 +477,7 @@ export interface SiteCreationPropertiesCollections {
477
477
  export interface SiteCreationSource {
478
478
  IsSyncThresholdLimitReached?: boolean;
479
479
  LastRefreshTimeStamp?: any;
480
- SiteCreationData?: Array<Microsoft.Online.SharePoint.TenantAdministration.SiteCreationData>;
480
+ SiteCreationData?: { results: Array<Microsoft.Online.SharePoint.TenantAdministration.SiteCreationData> };
481
481
  SyncThresholdLimit?: number;
482
482
  TotalSitesCount?: number;
483
483
  }
@@ -561,7 +561,7 @@ export interface SiteStatePropertiesCollections {
561
561
  * SiteUserGroupInfo
562
562
  **********************************************/
563
563
  export interface SiteUserGroupInfo {
564
- userGroup?: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo>;
564
+ userGroup?: { results: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo> };
565
565
  }
566
566
 
567
567
  /*********************************************
@@ -592,10 +592,10 @@ export interface UserInfoCollections {
592
592
  * SiteUserGroupsData
593
593
  **********************************************/
594
594
  export interface SiteUserGroupsData {
595
- members?: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo>;
596
- owners?: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo>;
595
+ members?: { results: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo> };
596
+ owners?: { results: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo> };
597
597
  siteId?: any;
598
- visitors?: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo>;
598
+ visitors?: { results: Array<Microsoft.Online.SharePoint.TenantAdministration.UserInfo> };
599
599
  }
600
600
 
601
601
  /*********************************************
@@ -83,12 +83,12 @@ export interface CheckoutFacetCollections {
83
83
  * GetCommentFacet
84
84
  **********************************************/
85
85
  export interface GetCommentFacet {
86
- assignees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
86
+ assignees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
87
87
  commentId?: string;
88
88
  isReply?: boolean;
89
89
  parentAuthor?: Microsoft.SharePoint.Activities.ActivityIdentity;
90
90
  parentCommentId?: string;
91
- participants?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
91
+ participants?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
92
92
  }
93
93
 
94
94
  /*********************************************
@@ -196,7 +196,7 @@ export interface EditFacetCollections {
196
196
  * GetMentionFacet
197
197
  **********************************************/
198
198
  export interface GetMentionFacet {
199
- mentionees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
199
+ mentionees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
200
200
  }
201
201
 
202
202
  /*********************************************
@@ -281,7 +281,7 @@ export interface RestoreVersionFacetCollections {
281
281
  * SharingFacet
282
282
  **********************************************/
283
283
  export interface SharingFacet {
284
- recipients?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
284
+ recipients?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
285
285
  sharingType?: string;
286
286
  }
287
287
 
@@ -296,7 +296,7 @@ export interface SharingFacetCollections {
296
296
  * TaskCompletedFacet
297
297
  **********************************************/
298
298
  export interface TaskCompletedFacet {
299
- assignees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
299
+ assignees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
300
300
  taskCreator?: Microsoft.SharePoint.Activities.ActivityIdentity;
301
301
  }
302
302
 
@@ -311,7 +311,7 @@ export interface TaskCompletedFacetCollections {
311
311
  * TaskCreatedFacet
312
312
  **********************************************/
313
313
  export interface TaskCreatedFacet {
314
- assignees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
314
+ assignees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
315
315
  taskCreator?: Microsoft.SharePoint.Activities.ActivityIdentity;
316
316
  }
317
317
 
@@ -326,8 +326,8 @@ export interface TaskCreatedFacetCollections {
326
326
  * TaskReassignedFacet
327
327
  **********************************************/
328
328
  export interface TaskReassignedFacet {
329
- assignees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
330
- previousAssignees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
329
+ assignees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
330
+ previousAssignees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
331
331
  taskCreator?: Microsoft.SharePoint.Activities.ActivityIdentity;
332
332
  }
333
333
 
@@ -342,7 +342,7 @@ export interface TaskReassignedFacetCollections {
342
342
  * TaskReopenedFacet
343
343
  **********************************************/
344
344
  export interface TaskReopenedFacet {
345
- assignees?: Array<Microsoft.SharePoint.Activities.ActivityIdentity>;
345
+ assignees?: { results: Array<Microsoft.SharePoint.Activities.ActivityIdentity> };
346
346
  taskCreator?: Microsoft.SharePoint.Activities.ActivityIdentity;
347
347
  }
348
348
 
@@ -420,7 +420,7 @@ export interface CoalescedFacetCollections {
420
420
  export interface CommentFacet {
421
421
  commentText?: string;
422
422
  parentAuthor?: Microsoft.SharePoint.Activities.ActivityClientIdentity;
423
- participants?: Array<Microsoft.SharePoint.Activities.ActivityClientIdentity>;
423
+ participants?: { results: Array<Microsoft.SharePoint.Activities.ActivityClientIdentity> };
424
424
  }
425
425
 
426
426
  /*********************************************
@@ -450,7 +450,7 @@ export interface InDocFacetCollections {
450
450
  **********************************************/
451
451
  export interface MentionFacet {
452
452
  commentContentId?: string;
453
- mentionees?: Array<Microsoft.SharePoint.Activities.ActivityClientIdentity>;
453
+ mentionees?: { results: Array<Microsoft.SharePoint.Activities.ActivityClientIdentity> };
454
454
  }
455
455
 
456
456
  /*********************************************
@@ -503,7 +503,7 @@ export interface RevisionInfoCollections {
503
503
  **********************************************/
504
504
  export interface RevisionSetFacet {
505
505
  author?: Microsoft.SharePoint.Activities.ActivityClientIdentity;
506
- revisions?: Array<Microsoft.SharePoint.Activities.RevisionInfo>;
506
+ revisions?: { results: Array<Microsoft.SharePoint.Activities.RevisionInfo> };
507
507
  }
508
508
 
509
509
  /*********************************************
@@ -5,11 +5,11 @@ import { Base } from "../../../";
5
5
  **********************************************/
6
6
  export interface GetRemoteItemInfoRequest {
7
7
  IsCreateMountPointFlow?: boolean;
8
- MountedRemoteItemUniqueIds?: Array<any>;
8
+ MountedRemoteItemUniqueIds?: { results: Array<any> };
9
9
  RemoteItemListId?: any;
10
10
  RemoteItemSiteId?: any;
11
11
  RemoteItemSiteUrl?: string;
12
- RemoteItemUniqueIds?: Array<any>;
12
+ RemoteItemUniqueIds?: { results: Array<any> };
13
13
  RemoteItemWebId?: any;
14
14
  UserEmail?: string;
15
15
  UserLoginName?: string;
@@ -26,7 +26,7 @@ export interface GetRemoteItemInfoRequestCollections {
26
26
  * NotifyChangeToMountPointsRequest
27
27
  **********************************************/
28
28
  export interface NotifyChangeToMountPointsRequest {
29
- MountPointUniqueIds?: Array<any>;
29
+ MountPointUniqueIds?: { results: Array<any> };
30
30
  }
31
31
 
32
32
  /*********************************************
@@ -24,7 +24,7 @@ export interface CustomFontsResourceCollections {
24
24
  * OrgAssetsLibraryCollection
25
25
  **********************************************/
26
26
  export interface OrgAssetsLibraryCollection {
27
- Items?: Array<Microsoft.SharePoint.Administration.OrgAssetsLibrary>;
27
+ Items?: { results: Array<Microsoft.SharePoint.Administration.OrgAssetsLibrary> };
28
28
  }
29
29
 
30
30
  /*********************************************
@@ -8,7 +8,7 @@ import { Microsoft } from "../../../../../";
8
8
  export interface AnalyticsAction {
9
9
  ActionType?: string;
10
10
  ExpireTime?: any;
11
- Properties?: Array<SP.KeyValue>;
11
+ Properties?: { results: Array<SP.KeyValue> };
12
12
  UserTime?: any;
13
13
  }
14
14
 
@@ -24,7 +24,7 @@ export interface AnalyticsActionCollections {
24
24
  **********************************************/
25
25
  export interface AnalyticsActor {
26
26
  Id?: string;
27
- Properties?: Array<SP.KeyValue>;
27
+ Properties?: { results: Array<SP.KeyValue> };
28
28
  TenantId?: any;
29
29
  }
30
30
 
@@ -40,7 +40,7 @@ export interface AnalyticsActorCollections {
40
40
  **********************************************/
41
41
  export interface AnalyticsItem {
42
42
  Id?: string;
43
- Properties?: Array<SP.KeyValue>;
43
+ Properties?: { results: Array<SP.KeyValue> };
44
44
  }
45
45
 
46
46
  /*********************************************
@@ -8,7 +8,7 @@ export interface QueryPropertyValue {
8
8
  BoolVal?: boolean;
9
9
  IntVal?: number;
10
10
  QueryPropertyValueTypeIndex?: number;
11
- StrArray?: Array<string>;
11
+ StrArray?: { results: Array<string> };
12
12
  StrVal?: string;
13
13
  }
14
14
 
@@ -94,7 +94,7 @@ export interface QueryAutoCompletionMatchCollections {
94
94
  export interface QueryAutoCompletionResults {
95
95
  CoreExecutionTimeMs?: number;
96
96
  CorrelationId?: string;
97
- Queries?: Array<Microsoft.SharePoint.Client.Search.Query.QueryAutoCompletion>;
97
+ Queries?: { results: Array<Microsoft.SharePoint.Client.Search.Query.QueryAutoCompletion> };
98
98
  }
99
99
 
100
100
  /*********************************************
@@ -108,7 +108,7 @@ export interface QueryAutoCompletionResultsCollections {
108
108
  * QueryAutoCompletion
109
109
  **********************************************/
110
110
  export interface QueryAutoCompletion {
111
- Matches?: Array<Microsoft.SharePoint.Client.Search.Query.QueryAutoCompletionMatch>;
111
+ Matches?: { results: Array<Microsoft.SharePoint.Client.Search.Query.QueryAutoCompletionMatch> };
112
112
  Query?: string;
113
113
  Score?: number;
114
114
  Source?: string;
@@ -155,10 +155,10 @@ export interface QuerySuggestionRangeCollections {
155
155
  * QuerySuggestionResults
156
156
  **********************************************/
157
157
  export interface QuerySuggestionResults {
158
- PeopleNames?: Array<string>;
159
- PersonalResults?: Array<Microsoft.SharePoint.Client.Search.Query.PersonalResultSuggestion>;
160
- PopularResults?: Array<Microsoft.SharePoint.Client.Search.Query.PersonalResultSuggestion>;
161
- Queries?: Array<Microsoft.SharePoint.Client.Search.Query.QuerySuggestionQuery>;
158
+ PeopleNames?: { results: Array<string> };
159
+ PersonalResults?: { results: Array<Microsoft.SharePoint.Client.Search.Query.PersonalResultSuggestion> };
160
+ PopularResults?: { results: Array<Microsoft.SharePoint.Client.Search.Query.PersonalResultSuggestion> };
161
+ Queries?: { results: Array<Microsoft.SharePoint.Client.Search.Query.QuerySuggestionQuery> };
162
162
  }
163
163
 
164
164
  /*********************************************
@@ -172,8 +172,8 @@ export interface QuerySuggestionResultsCollections {
172
172
  * TenantCustomQuerySuggestions
173
173
  **********************************************/
174
174
  export interface TenantCustomQuerySuggestions {
175
- AlwaysSuggest?: Array<Microsoft.SharePoint.Client.Search.Query.CustomQuerySuggestions>;
176
- NeverSuggest?: Array<Microsoft.SharePoint.Client.Search.Query.CustomQuerySuggestions>;
175
+ AlwaysSuggest?: { results: Array<Microsoft.SharePoint.Client.Search.Query.CustomQuerySuggestions> };
176
+ NeverSuggest?: { results: Array<Microsoft.SharePoint.Client.Search.Query.CustomQuerySuggestions> };
177
177
  }
178
178
 
179
179
  /*********************************************
@@ -188,7 +188,7 @@ export interface TenantCustomQuerySuggestionsCollections {
188
188
  **********************************************/
189
189
  export interface CustomQuerySuggestions {
190
190
  LCID?: number;
191
- Queries?: Array<string>;
191
+ Queries?: { results: Array<string> };
192
192
  }
193
193
 
194
194
  /*********************************************
@@ -5,7 +5,7 @@ import { Microsoft } from "../../../";
5
5
  * CommentInformation
6
6
  **********************************************/
7
7
  export interface CommentInformation {
8
- mentions?: Array<Microsoft.SharePoint.Comments.Client.Identity>;
8
+ mentions?: { results: Array<Microsoft.SharePoint.Comments.Client.Identity> };
9
9
  text?: string;
10
10
  }
11
11
 
@@ -205,7 +205,7 @@ export interface SPOSiteReferenceCollections {
205
205
  * ItemsList
206
206
  **********************************************/
207
207
  export interface ItemsList {
208
- items?: Array<Microsoft.SharePoint.News.DataModel.Item>;
208
+ items?: { results: Array<Microsoft.SharePoint.News.DataModel.Item> };
209
209
  }
210
210
 
211
211
  /*********************************************
@@ -5,7 +5,7 @@ import { Microsoft } from "../../../../";
5
5
  * SharePointHomeDataCacheCollection
6
6
  **********************************************/
7
7
  export interface SharePointHomeDataCacheCollection {
8
- Items?: Array<Microsoft.SharePoint.Portal.Home.SharePointHomeDataCache>;
8
+ Items?: { results: Array<Microsoft.SharePoint.Portal.Home.SharePointHomeDataCache> };
9
9
  }
10
10
 
11
11
  /*********************************************
@@ -67,7 +67,7 @@ export interface SharePointHomeDataCacheContextCollections {
67
67
  * SharePointHomePageContext
68
68
  **********************************************/
69
69
  export interface SharePointHomePageContext {
70
- ActiveFlights?: Array<string>;
70
+ ActiveFlights?: { results: Array<string> };
71
71
  AlternateWebAppHost?: string;
72
72
  ExperienceState?: number;
73
73
  IsGraphEnabled?: boolean;
@@ -80,7 +80,7 @@ export interface SharePointHomePageContext {
80
80
  IsSelfServiceSiteCreationEnabled?: boolean;
81
81
  IsUserVoiceEnabled?: boolean;
82
82
  LoadSuiteNav?: boolean;
83
- MicroserviceFlights?: Array<string>;
83
+ MicroserviceFlights?: { results: Array<string> };
84
84
  MicroserviceUrl?: string;
85
85
  MySiteUrl?: string;
86
86
  SearchCenterUrl?: string;
@@ -26,11 +26,11 @@ export interface MyRecsCacheBlobCollections {
26
26
  **********************************************/
27
27
  export interface MyRecsQueryInfo {
28
28
  Category?: number;
29
- ExpertiseTags?: Array<string>;
30
- FollowedUrls?: Array<string>;
31
- InterestTags?: Array<string>;
29
+ ExpertiseTags?: { results: Array<string> };
30
+ FollowedUrls?: { results: Array<string> };
31
+ InterestTags?: { results: Array<string> };
32
32
  QueryInfoExists?: boolean;
33
- SuggestedTags?: Array<string>;
33
+ SuggestedTags?: { results: Array<string> };
34
34
  }
35
35
 
36
36
  /*********************************************