gd-sprest 9.1.1 → 9.1.3
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.
- package/build/mapper/def.js +228 -38
- package/build/mapper/v2.js +96 -0
- package/build/rest.js +1 -1
- package/build/sptypes/graphtypes.js +5 -0
- package/dist/gd-sprest.js +1 -1
- package/dist/gd-sprest.min.js +1 -1
- package/package.json +2 -2
package/build/mapper/def.js
CHANGED
|
@@ -49,6 +49,9 @@ exports.Mapper = {
|
|
|
49
49
|
checkAIBuilderAccess: {
|
|
50
50
|
argNames: ["environmentName", "isTestEnvironment", "userId"],
|
|
51
51
|
},
|
|
52
|
+
getAutofillColumnSettings: {
|
|
53
|
+
argNames: ["docLibId"],
|
|
54
|
+
},
|
|
52
55
|
getByContentTypeId: {
|
|
53
56
|
argNames: ["contentTypeId"],
|
|
54
57
|
},
|
|
@@ -79,6 +82,9 @@ exports.Mapper = {
|
|
|
79
82
|
},
|
|
80
83
|
invokeDataverseQuery: {},
|
|
81
84
|
query: { argNames: ["oData"] },
|
|
85
|
+
setAutofillColumnSettings: {
|
|
86
|
+
argNames: ["docLibId", "autofillColumnSettings"],
|
|
87
|
+
},
|
|
82
88
|
setColumnLLMInfo: {
|
|
83
89
|
argNames: ["docLibId", "columnId", "autofillPrompt", "isEnabled"],
|
|
84
90
|
},
|
|
@@ -91,6 +97,9 @@ exports.Mapper = {
|
|
|
91
97
|
verifyModelUrls: {
|
|
92
98
|
argNames: ["urls"],
|
|
93
99
|
},
|
|
100
|
+
verifyModelUrlsAndGrantPAC: {
|
|
101
|
+
argNames: ["urls"],
|
|
102
|
+
},
|
|
94
103
|
},
|
|
95
104
|
"Microsoft.Office.Server.ContentCenter.SPMachineLearningModel": {
|
|
96
105
|
addModelDependency: {
|
|
@@ -503,6 +512,9 @@ exports.Mapper = {
|
|
|
503
512
|
getJobsBySiteUrl: {
|
|
504
513
|
argNames: ["url"],
|
|
505
514
|
},
|
|
515
|
+
getJobsCountByParentIdAndState: {
|
|
516
|
+
argNames: ["parentId", "state"],
|
|
517
|
+
},
|
|
506
518
|
getSiteRenameReport: {
|
|
507
519
|
argNames: ["state"],
|
|
508
520
|
},
|
|
@@ -511,6 +523,7 @@ exports.Mapper = {
|
|
|
511
523
|
"Microsoft.Online.SharePoint.Onboarding.RestService.TenantRename.TenantRenameJob.Collection": {
|
|
512
524
|
cancel: {},
|
|
513
525
|
get: {},
|
|
526
|
+
getV2: {},
|
|
514
527
|
getWarningMessages: {},
|
|
515
528
|
query: { argNames: ["oData"] },
|
|
516
529
|
},
|
|
@@ -604,6 +617,9 @@ exports.Mapper = {
|
|
|
604
617
|
createDataAccessGovernanceReport: {
|
|
605
618
|
argNames: ["reportEntity", "workload", "reportType", "fileSensitivityLabelName", "fileSensitivityLabelGUID", "name", "template", "privacy", "siteSensitivityLabelGUID", "countOfUsersMoreThan"],
|
|
606
619
|
},
|
|
620
|
+
createDataAccessGovernanceReportV2: {
|
|
621
|
+
argNames: ["reportEntity", "workload", "reportType", "fileSensitivityLabelName", "fileSensitivityLabelGUID", "name", "template", "privacy", "siteSensitivityLabelGUID", "countOfUsersMoreThan", "userIDList"],
|
|
622
|
+
},
|
|
607
623
|
exportSPODataAccessGovernanceInsight: {
|
|
608
624
|
argNames: ["reportId"],
|
|
609
625
|
},
|
|
@@ -639,6 +655,24 @@ exports.Mapper = {
|
|
|
639
655
|
argNames: ["added", "removed"],
|
|
640
656
|
},
|
|
641
657
|
},
|
|
658
|
+
"Microsoft.Online.SharePoint.TenantAdministration.SPOCopilotAgentInsightsRestApiClient": {
|
|
659
|
+
createCopilotAgentInsightsReport: {
|
|
660
|
+
argNames: ["reportPeriod"],
|
|
661
|
+
},
|
|
662
|
+
getAllCopilotAgentInsightsReportsMetadata: {},
|
|
663
|
+
getCopilotAgentInsightsFullReportContent: {
|
|
664
|
+
argNames: ["reportId", "reportSubType", "isFullDetails"],
|
|
665
|
+
},
|
|
666
|
+
getCopilotAgentsOnSitesTopDetails: {
|
|
667
|
+
argNames: ["reportId", "isFullDetails"],
|
|
668
|
+
},
|
|
669
|
+
getSiteDistributionsTopDetails: {
|
|
670
|
+
argNames: ["reportId", "isFullDetails"],
|
|
671
|
+
},
|
|
672
|
+
getTopSitesDetails: {
|
|
673
|
+
argNames: ["reportId", "isFullDetails"],
|
|
674
|
+
},
|
|
675
|
+
},
|
|
642
676
|
"Microsoft.Online.SharePoint.TenantAdministration.SPOGroup": {
|
|
643
677
|
addAsGroupOwnerAndMember: {
|
|
644
678
|
argNames: ["groupId", "userId", "userPrincipalName"],
|
|
@@ -786,6 +820,9 @@ exports.Mapper = {
|
|
|
786
820
|
argNames: ["reportId"],
|
|
787
821
|
},
|
|
788
822
|
disableCollaborationInsightsDataCollection: {},
|
|
823
|
+
downloadHighVolumeComponentImpactedAssetsReport: {
|
|
824
|
+
argNames: ["category", "documentKey"],
|
|
825
|
+
},
|
|
789
826
|
downloadRansomwareImpactedAssetsReport: {
|
|
790
827
|
argNames: ["driveId", "fileName", "reportNameType"],
|
|
791
828
|
},
|
|
@@ -797,6 +834,9 @@ exports.Mapper = {
|
|
|
797
834
|
},
|
|
798
835
|
enableCollaborationInsightsDataCollection: {},
|
|
799
836
|
ensureBrandCenterFeature: {},
|
|
837
|
+
executeTranspilerRequest: {
|
|
838
|
+
argNames: ["payload"],
|
|
839
|
+
},
|
|
800
840
|
exportAdminListToCSV: {
|
|
801
841
|
argNames: ["viewXml", "listName"],
|
|
802
842
|
},
|
|
@@ -808,6 +848,9 @@ exports.Mapper = {
|
|
|
808
848
|
},
|
|
809
849
|
exportUnlicensedOneDriveForBusinessListToCSV: {},
|
|
810
850
|
getAdminListViews: {},
|
|
851
|
+
getAllDeletedPersonalSitesPropertiesAllVersions: {
|
|
852
|
+
argNames: ["startIndex"],
|
|
853
|
+
},
|
|
811
854
|
getBillingPolicyIdForApp: {
|
|
812
855
|
argNames: ["applicationId"],
|
|
813
856
|
},
|
|
@@ -815,6 +858,24 @@ exports.Mapper = {
|
|
|
815
858
|
getBrandFontPackages: {},
|
|
816
859
|
getCollaborationInsightsData: {},
|
|
817
860
|
getCollaborationInsightsOverview: {},
|
|
861
|
+
getContentManagementAssessmentResults: {},
|
|
862
|
+
getContentSecurityPolicy: {},
|
|
863
|
+
getCopilotPromoOptInStatus: {},
|
|
864
|
+
getDeletedPersonalSitePropertiesAllVersions: {
|
|
865
|
+
argNames: ["url"],
|
|
866
|
+
},
|
|
867
|
+
getDeletedSiteProperties: {
|
|
868
|
+
argNames: ["startIndex"],
|
|
869
|
+
},
|
|
870
|
+
getDeletedSitePropertiesByUrl: {
|
|
871
|
+
argNames: ["siteUrl"],
|
|
872
|
+
},
|
|
873
|
+
getDeletedSitePropertiesFromSharePoint: {
|
|
874
|
+
argNames: ["startIndex"],
|
|
875
|
+
},
|
|
876
|
+
getFileSensitivityLabelInfo: {
|
|
877
|
+
argNames: ["fileUrl"],
|
|
878
|
+
},
|
|
818
879
|
getFileVersionBatchDeleteJobProgress: {
|
|
819
880
|
argNames: ["siteUrl"],
|
|
820
881
|
},
|
|
@@ -855,6 +916,7 @@ exports.Mapper = {
|
|
|
855
916
|
argNames: ["parameters"],
|
|
856
917
|
},
|
|
857
918
|
getRansomwareEventsOverview: {},
|
|
919
|
+
getRootSiteUrl: {},
|
|
858
920
|
getSPHSiteUrl: {},
|
|
859
921
|
getSPListItemCount: {
|
|
860
922
|
argNames: ["listName"],
|
|
@@ -897,22 +959,42 @@ exports.Mapper = {
|
|
|
897
959
|
argNames: ["localeId", "compatibilityLevel"],
|
|
898
960
|
},
|
|
899
961
|
getSPOWebTemplatesAllowedForArchiving: {},
|
|
900
|
-
getSharePointSettingData: {
|
|
962
|
+
getSharePointSettingData: {
|
|
963
|
+
argNames: ["category"],
|
|
964
|
+
},
|
|
901
965
|
getSharePointSiteSharingInsights: {
|
|
902
966
|
argNames: ["queryMode"],
|
|
903
967
|
},
|
|
904
|
-
getSiteCohortsSummary: {
|
|
905
|
-
argNames: ["view"],
|
|
906
|
-
},
|
|
907
968
|
getSiteAdministrators: {
|
|
908
969
|
argNames: ["siteId"],
|
|
909
970
|
},
|
|
971
|
+
getSiteAuthorizationCodeForMigration: {
|
|
972
|
+
argNames: ["endpointUrl"],
|
|
973
|
+
},
|
|
974
|
+
getSiteByUrl: {
|
|
975
|
+
argNames: ["url"],
|
|
976
|
+
},
|
|
977
|
+
getSiteCohortsSummary: {
|
|
978
|
+
argNames: ["view"],
|
|
979
|
+
},
|
|
910
980
|
getSiteHealthStatus: {
|
|
911
981
|
argNames: ["sourceUrl"],
|
|
912
982
|
},
|
|
983
|
+
getSiteProperties: {
|
|
984
|
+
argNames: ["startIndex", "includeDetail"],
|
|
985
|
+
},
|
|
986
|
+
getSitePropertiesByFilter: {
|
|
987
|
+
argNames: ["filter", "startIndex", "includeDetail"],
|
|
988
|
+
},
|
|
913
989
|
getSitePropertiesByUrl: {
|
|
914
990
|
argNames: ["url", "includeDetail"],
|
|
915
991
|
},
|
|
992
|
+
getSitePropertiesFromSharePoint: {
|
|
993
|
+
argNames: ["startIndex", "includeDetail"],
|
|
994
|
+
},
|
|
995
|
+
getSitePropertiesFromSharePointByFilter: {
|
|
996
|
+
argNames: ["filter", "startIndex", "includeDetail"],
|
|
997
|
+
},
|
|
916
998
|
getSitePropertiesFromSharePointByFilters: {
|
|
917
999
|
argNames: ["speFilter"],
|
|
918
1000
|
},
|
|
@@ -941,9 +1023,6 @@ exports.Mapper = {
|
|
|
941
1023
|
},
|
|
942
1024
|
getTenantSendFromAddress: {},
|
|
943
1025
|
getTenantSiteCreationSource: {},
|
|
944
|
-
getTopFilesSharingInsights: {
|
|
945
|
-
argNames: ["queryMode"],
|
|
946
|
-
},
|
|
947
1026
|
getTrackViewFeatureAlwaysVisible: {},
|
|
948
1027
|
getVersionPolicyForDocLibsJobProgress: {
|
|
949
1028
|
argNames: ["siteUrl"],
|
|
@@ -956,6 +1035,7 @@ exports.Mapper = {
|
|
|
956
1035
|
argNames: ["hubSiteId", "principals", "grantedRights"],
|
|
957
1036
|
},
|
|
958
1037
|
hasValidEducationLicense: {},
|
|
1038
|
+
isRequestContentManagementAssessmentEligible: {},
|
|
959
1039
|
isSyntexRepositoryTermsOfServiceAccepted: {},
|
|
960
1040
|
newFileVersionBatchDeleteJob: {
|
|
961
1041
|
argNames: ["siteUrl", "batchDeleteParams"],
|
|
@@ -1087,6 +1167,7 @@ exports.Mapper = {
|
|
|
1087
1167
|
reorderTargetedSites: {
|
|
1088
1168
|
argNames: ["siteIds"],
|
|
1089
1169
|
},
|
|
1170
|
+
requestContentManagementAssessment: {},
|
|
1090
1171
|
restoreContainer: {
|
|
1091
1172
|
argNames: ["containerId"],
|
|
1092
1173
|
},
|
|
@@ -1111,6 +1192,9 @@ exports.Mapper = {
|
|
|
1111
1192
|
sendEmail: {
|
|
1112
1193
|
argNames: ["siteUrl", "activityEventJson"],
|
|
1113
1194
|
},
|
|
1195
|
+
setCopilotPromoOptInStatus: {
|
|
1196
|
+
argNames: ["copilotPromoOptInEnabled"],
|
|
1197
|
+
},
|
|
1114
1198
|
setDefaultView: {
|
|
1115
1199
|
argNames: ["viewId", "listName"],
|
|
1116
1200
|
},
|
|
@@ -1190,6 +1274,9 @@ exports.Mapper = {
|
|
|
1190
1274
|
unarchiveSiteById: {
|
|
1191
1275
|
argNames: ["siteId"],
|
|
1192
1276
|
},
|
|
1277
|
+
unlockSensitivityLabelEncryptedFile: {
|
|
1278
|
+
argNames: ["fileUrl", "justificationText"],
|
|
1279
|
+
},
|
|
1193
1280
|
unregisterHubSite: {
|
|
1194
1281
|
argNames: ["siteUrl"],
|
|
1195
1282
|
},
|
|
@@ -1402,7 +1489,6 @@ exports.Mapper = {
|
|
|
1402
1489
|
argNames: ["sqlCommandText"],
|
|
1403
1490
|
},
|
|
1404
1491
|
getDatabaseProperties: {},
|
|
1405
|
-
getMarker: {},
|
|
1406
1492
|
getEventCacheDataChunk: {
|
|
1407
1493
|
argNames: ["lastCopiedId", "searchChangeToken"],
|
|
1408
1494
|
},
|
|
@@ -1413,6 +1499,7 @@ exports.Mapper = {
|
|
|
1413
1499
|
getEventCacheIds: {
|
|
1414
1500
|
argNames: ["lastCopiedId"],
|
|
1415
1501
|
},
|
|
1502
|
+
getMarker: {},
|
|
1416
1503
|
getScalarValue: {
|
|
1417
1504
|
argNames: ["sqlCommandText"],
|
|
1418
1505
|
},
|
|
@@ -1432,9 +1519,13 @@ exports.Mapper = {
|
|
|
1432
1519
|
releaseSystemSiteLock: {
|
|
1433
1520
|
argNames: ["lockRequestor"],
|
|
1434
1521
|
},
|
|
1522
|
+
removeSiteMapEntry: {},
|
|
1435
1523
|
resumeCrawling: {
|
|
1436
1524
|
argNames: ["originalCPSDeleteReason"],
|
|
1437
1525
|
},
|
|
1526
|
+
setSiteMoveState: {
|
|
1527
|
+
argNames: ["state"],
|
|
1528
|
+
},
|
|
1438
1529
|
sourceCleanupAfterMove: {
|
|
1439
1530
|
argNames: ["isDeleted"],
|
|
1440
1531
|
},
|
|
@@ -3090,11 +3181,17 @@ exports.Mapper = {
|
|
|
3090
3181
|
deleteSiteTheme: {
|
|
3091
3182
|
argNames: ["themeId"],
|
|
3092
3183
|
},
|
|
3184
|
+
deleteTenantTheme: {
|
|
3185
|
+
argNames: ["themeId"],
|
|
3186
|
+
},
|
|
3093
3187
|
ensureBrandColorsListFeature: {},
|
|
3094
3188
|
ensureBrandFontsLibraryFeature: {},
|
|
3095
3189
|
getFontStream: {
|
|
3096
3190
|
argNames: ["fontFileUrl"],
|
|
3097
3191
|
},
|
|
3192
|
+
getSiteThemeById: {
|
|
3193
|
+
argNames: ["id"],
|
|
3194
|
+
},
|
|
3098
3195
|
getSiteThemes: {},
|
|
3099
3196
|
getTenantThemeById: {
|
|
3100
3197
|
argNames: ["id"],
|
|
@@ -3440,6 +3537,7 @@ exports.Mapper = {
|
|
|
3440
3537
|
},
|
|
3441
3538
|
"SP.EmployeeEngagement": {
|
|
3442
3539
|
configuration: {},
|
|
3540
|
+
configuredVivaConnectionsURL: {},
|
|
3443
3541
|
dashboardContent: {
|
|
3444
3542
|
argNames: ["overrideLanguageCode"],
|
|
3445
3543
|
},
|
|
@@ -3451,10 +3549,16 @@ exports.Mapper = {
|
|
|
3451
3549
|
},
|
|
3452
3550
|
getDashboardPersonalization: {},
|
|
3453
3551
|
getTargetedSitesAsEditor: {},
|
|
3552
|
+
likeNewsPost: {
|
|
3553
|
+
argNames: ["pageUrl", "listId", "listItemUniqueId"],
|
|
3554
|
+
},
|
|
3454
3555
|
query: { argNames: ["oData"], requestType: utils_1.RequestType.OData },
|
|
3455
3556
|
setDashboardPersonalization: {
|
|
3456
3557
|
argNames: ["isEnabled"],
|
|
3457
3558
|
},
|
|
3559
|
+
unlikeNewsPost: {
|
|
3560
|
+
argNames: ["pageUrl", "listId", "listItemUniqueId"],
|
|
3561
|
+
},
|
|
3458
3562
|
vivaConnections: {
|
|
3459
3563
|
argNames: ["adminConfiguredUrl"],
|
|
3460
3564
|
},
|
|
@@ -3471,7 +3575,7 @@ exports.Mapper = {
|
|
|
3471
3575
|
argNames: ["mySiteUrl"],
|
|
3472
3576
|
},
|
|
3473
3577
|
saveDashboard: {
|
|
3474
|
-
argNames: ["employeeExperienceDashboardData", "mySiteUrl"],
|
|
3578
|
+
argNames: ["employeeExperienceDashboardData", "userCards", "mySiteUrl"],
|
|
3475
3579
|
},
|
|
3476
3580
|
setAnnouncementState: {
|
|
3477
3581
|
argNames: ["announcementStates", "mySiteUrl"],
|
|
@@ -4689,6 +4793,9 @@ exports.Mapper = {
|
|
|
4689
4793
|
argNames: ["createItemRequestPayload"],
|
|
4690
4794
|
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
4691
4795
|
},
|
|
4796
|
+
createListForm: {
|
|
4797
|
+
argNames: ["parameters"],
|
|
4798
|
+
},
|
|
4692
4799
|
createMappedView: {
|
|
4693
4800
|
argNames: ["appViewCreationInfo", "visualizationTarget"],
|
|
4694
4801
|
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
@@ -4717,7 +4824,9 @@ exports.Mapper = {
|
|
|
4717
4824
|
argNames: ["id", "parameters"],
|
|
4718
4825
|
},
|
|
4719
4826
|
ensureSignoffStatusField: {},
|
|
4720
|
-
getAllRules: {
|
|
4827
|
+
getAllRules: {
|
|
4828
|
+
argNames: ["includeQuicksteps", "includeAutomaticRules"],
|
|
4829
|
+
},
|
|
4721
4830
|
getAsyncActionConfig: {
|
|
4722
4831
|
argNames: ["id"],
|
|
4723
4832
|
},
|
|
@@ -4784,6 +4893,9 @@ exports.Mapper = {
|
|
|
4784
4893
|
}
|
|
4785
4894
|
}
|
|
4786
4895
|
},
|
|
4896
|
+
getListForms: {
|
|
4897
|
+
argNames: ["bSanitize"],
|
|
4898
|
+
},
|
|
4787
4899
|
getListItemChangesSinceToken: {
|
|
4788
4900
|
argNames: ["query"],
|
|
4789
4901
|
metadataType: "SP.ChangeLogItemQuery",
|
|
@@ -5010,10 +5122,6 @@ exports.Mapper = {
|
|
|
5010
5122
|
archive: {
|
|
5011
5123
|
requestType: utils_1.RequestType.Post
|
|
5012
5124
|
},
|
|
5013
|
-
attachImage: {
|
|
5014
|
-
argNames: ["imageStream", "imageName", "fieldInternalName"],
|
|
5015
|
-
requestType: utils_1.RequestType.PostWithArgs
|
|
5016
|
-
},
|
|
5017
5125
|
breakRoleInheritance: {
|
|
5018
5126
|
argNames: ["copyRoleAssignments", "clearSubscopes"],
|
|
5019
5127
|
requestType: utils_1.RequestType.PostWithArgs
|
|
@@ -5038,6 +5146,9 @@ exports.Mapper = {
|
|
|
5038
5146
|
name: "getUserEffectivePermissions(@user)?@user='[[userName]]'",
|
|
5039
5147
|
requestType: utils_1.RequestType.GetReplace
|
|
5040
5148
|
},
|
|
5149
|
+
getVersionById: {
|
|
5150
|
+
argNames: ["versionId"],
|
|
5151
|
+
},
|
|
5041
5152
|
getVersions: {
|
|
5042
5153
|
argNames: ["getVersionsParams"],
|
|
5043
5154
|
},
|
|
@@ -5410,6 +5521,7 @@ exports.Mapper = {
|
|
|
5410
5521
|
},
|
|
5411
5522
|
},
|
|
5412
5523
|
"SP.Publishing.CampaignPublication": {
|
|
5524
|
+
amplify: {},
|
|
5413
5525
|
approveApprovalRequest: {
|
|
5414
5526
|
argNames: ["comment"],
|
|
5415
5527
|
},
|
|
@@ -5438,7 +5550,9 @@ exports.Mapper = {
|
|
|
5438
5550
|
argNames: ["lockId"],
|
|
5439
5551
|
},
|
|
5440
5552
|
discardPage: {},
|
|
5441
|
-
extendSessionCoAuth: {
|
|
5553
|
+
extendSessionCoAuth: {
|
|
5554
|
+
argNames: ["authoringMetadata"],
|
|
5555
|
+
},
|
|
5442
5556
|
getDependencyMetadata: {},
|
|
5443
5557
|
getHighlightsInfo: {},
|
|
5444
5558
|
getLatestVersionsInDescendingOrder: {
|
|
@@ -5455,10 +5569,11 @@ exports.Mapper = {
|
|
|
5455
5569
|
move: {
|
|
5456
5570
|
argNames: ["pageMoveParams"],
|
|
5457
5571
|
},
|
|
5572
|
+
prepare: {},
|
|
5458
5573
|
promoteToNews: {},
|
|
5459
5574
|
publish: {},
|
|
5460
5575
|
publishAsBot: {
|
|
5461
|
-
argNames: ["tenantId", "channelIds", "
|
|
5576
|
+
argNames: ["tenantId", "channelIds", "content", "title", "headline"],
|
|
5462
5577
|
},
|
|
5463
5578
|
publishCoAuth: {
|
|
5464
5579
|
argNames: ["pageStream"],
|
|
@@ -5470,6 +5585,9 @@ exports.Mapper = {
|
|
|
5470
5585
|
resetEndpoint: {
|
|
5471
5586
|
argNames: ["requestParam"],
|
|
5472
5587
|
},
|
|
5588
|
+
restoreByLabel: {
|
|
5589
|
+
argNames: ["versionlabel"],
|
|
5590
|
+
},
|
|
5473
5591
|
sPSiteValidator: {
|
|
5474
5592
|
argNames: ["siteUrl"],
|
|
5475
5593
|
},
|
|
@@ -5494,7 +5612,7 @@ exports.Mapper = {
|
|
|
5494
5612
|
argNames: ["pageStream"],
|
|
5495
5613
|
},
|
|
5496
5614
|
saveStreams: {
|
|
5497
|
-
argNames: ["contentStream", "sharedLockId"],
|
|
5615
|
+
argNames: ["contentStream", "sharedLockId", "scenario"],
|
|
5498
5616
|
},
|
|
5499
5617
|
schedulePublication: {
|
|
5500
5618
|
argNames: ["publishStartDate"],
|
|
@@ -5541,6 +5659,9 @@ exports.Mapper = {
|
|
|
5541
5659
|
},
|
|
5542
5660
|
},
|
|
5543
5661
|
"SP.Publishing.FeedVideoPage": {
|
|
5662
|
+
amplify: {
|
|
5663
|
+
argNames: ["request"],
|
|
5664
|
+
},
|
|
5544
5665
|
boostNews: {
|
|
5545
5666
|
argNames: ["SitePageBoost"],
|
|
5546
5667
|
},
|
|
@@ -5564,7 +5685,9 @@ exports.Mapper = {
|
|
|
5564
5685
|
argNames: ["lockId"],
|
|
5565
5686
|
},
|
|
5566
5687
|
discardPage: {},
|
|
5567
|
-
extendSessionCoAuth: {
|
|
5688
|
+
extendSessionCoAuth: {
|
|
5689
|
+
argNames: ["authoringMetadata"],
|
|
5690
|
+
},
|
|
5568
5691
|
getDependencyMetadata: {},
|
|
5569
5692
|
getHighlightsInfo: {},
|
|
5570
5693
|
getLatestVersionsInDescendingOrder: {
|
|
@@ -5583,6 +5706,9 @@ exports.Mapper = {
|
|
|
5583
5706
|
publishCoAuth: {
|
|
5584
5707
|
argNames: ["pageStream"],
|
|
5585
5708
|
},
|
|
5709
|
+
restoreByLabel: {
|
|
5710
|
+
argNames: ["versionlabel"],
|
|
5711
|
+
},
|
|
5586
5712
|
saveDraft: {
|
|
5587
5713
|
argNames: ["sitePage"],
|
|
5588
5714
|
},
|
|
@@ -5601,11 +5727,17 @@ exports.Mapper = {
|
|
|
5601
5727
|
argNames: ["pageStream"],
|
|
5602
5728
|
},
|
|
5603
5729
|
saveStreams: {
|
|
5604
|
-
argNames: ["contentStream", "sharedLockId"],
|
|
5730
|
+
argNames: ["contentStream", "sharedLockId", "scenario"],
|
|
5605
5731
|
},
|
|
5606
5732
|
schedulePublish: {
|
|
5607
5733
|
argNames: ["sitePage"],
|
|
5608
5734
|
},
|
|
5735
|
+
sendTestEmail: {
|
|
5736
|
+
argNames: ["transpileContent", "subject", "sensitivityLabelId"],
|
|
5737
|
+
},
|
|
5738
|
+
sendTestTeamsMessage: {
|
|
5739
|
+
argNames: ["audienceId", "transpileContent"],
|
|
5740
|
+
},
|
|
5609
5741
|
sharePagePreviewByEmail: {
|
|
5610
5742
|
argNames: ["message", "recipientEmails"],
|
|
5611
5743
|
},
|
|
@@ -5720,6 +5852,9 @@ exports.Mapper = {
|
|
|
5720
5852
|
},
|
|
5721
5853
|
},
|
|
5722
5854
|
"SP.Publishing.RepostPage": {
|
|
5855
|
+
amplify: {
|
|
5856
|
+
argNames: ["request"],
|
|
5857
|
+
},
|
|
5723
5858
|
boostNews: {
|
|
5724
5859
|
argNames: ["SitePageBoost"],
|
|
5725
5860
|
},
|
|
@@ -5743,7 +5878,9 @@ exports.Mapper = {
|
|
|
5743
5878
|
argNames: ["lockId"],
|
|
5744
5879
|
},
|
|
5745
5880
|
discardPage: {},
|
|
5746
|
-
extendSessionCoAuth: {
|
|
5881
|
+
extendSessionCoAuth: {
|
|
5882
|
+
argNames: ["authoringMetadata"],
|
|
5883
|
+
},
|
|
5747
5884
|
getDependencyMetadata: {},
|
|
5748
5885
|
getHighlightsInfo: {},
|
|
5749
5886
|
getLatestVersionsInDescendingOrder: {
|
|
@@ -5762,6 +5899,9 @@ exports.Mapper = {
|
|
|
5762
5899
|
publishCoAuth: {
|
|
5763
5900
|
argNames: ["pageStream"],
|
|
5764
5901
|
},
|
|
5902
|
+
restoreByLabel: {
|
|
5903
|
+
argNames: ["versionlabel"],
|
|
5904
|
+
},
|
|
5765
5905
|
saveDraft: {
|
|
5766
5906
|
argNames: ["sitePage"],
|
|
5767
5907
|
},
|
|
@@ -5780,11 +5920,17 @@ exports.Mapper = {
|
|
|
5780
5920
|
argNames: ["pageStream"],
|
|
5781
5921
|
},
|
|
5782
5922
|
saveStreams: {
|
|
5783
|
-
argNames: ["contentStream", "sharedLockId"],
|
|
5923
|
+
argNames: ["contentStream", "sharedLockId", "scenario"],
|
|
5784
5924
|
},
|
|
5785
5925
|
schedulePublish: {
|
|
5786
5926
|
argNames: ["sitePage"],
|
|
5787
5927
|
},
|
|
5928
|
+
sendTestEmail: {
|
|
5929
|
+
argNames: ["transpileContent", "subject", "sensitivityLabelId"],
|
|
5930
|
+
},
|
|
5931
|
+
sendTestTeamsMessage: {
|
|
5932
|
+
argNames: ["audienceId", "transpileContent"],
|
|
5933
|
+
},
|
|
5788
5934
|
sharePagePreviewByEmail: {
|
|
5789
5935
|
argNames: ["message", "recipientEmails"],
|
|
5790
5936
|
},
|
|
@@ -5807,7 +5953,7 @@ exports.Mapper = {
|
|
|
5807
5953
|
},
|
|
5808
5954
|
"SP.Publishing.RichSharing": {
|
|
5809
5955
|
sharePageByEmail: {
|
|
5810
|
-
argNames: ["url", "message", "recipientEmails", "pageContent", "subject", "ccEmails", "bccEmails"],
|
|
5956
|
+
argNames: ["url", "message", "recipientEmails", "pageContent", "subject", "ccEmails", "bccEmails", "pageItemId", "scenarioTag", "emailSize"],
|
|
5811
5957
|
},
|
|
5812
5958
|
shareSiteByEmail: {
|
|
5813
5959
|
argNames: ["CustomDescription", "CustomTitle", "Message", "Url", "recipientEmails"],
|
|
@@ -5836,6 +5982,9 @@ exports.Mapper = {
|
|
|
5836
5982
|
},
|
|
5837
5983
|
},
|
|
5838
5984
|
"SP.Publishing.SitePage": {
|
|
5985
|
+
amplify: {
|
|
5986
|
+
argNames: ["request"],
|
|
5987
|
+
},
|
|
5839
5988
|
boostNews: {
|
|
5840
5989
|
argNames: ["SitePageBoost"],
|
|
5841
5990
|
},
|
|
@@ -5867,7 +6016,9 @@ exports.Mapper = {
|
|
|
5867
6016
|
discardPage: {
|
|
5868
6017
|
requestType: utils_1.RequestType.Post
|
|
5869
6018
|
},
|
|
5870
|
-
extendSessionCoAuth: {
|
|
6019
|
+
extendSessionCoAuth: {
|
|
6020
|
+
argNames: ["authoringMetadata"],
|
|
6021
|
+
},
|
|
5871
6022
|
getDependencyMetadata: {},
|
|
5872
6023
|
getHighlightsInfo: {},
|
|
5873
6024
|
getLatestVersionsInDescendingOrder: {
|
|
@@ -5885,13 +6036,16 @@ exports.Mapper = {
|
|
|
5885
6036
|
publish: {
|
|
5886
6037
|
requestType: utils_1.RequestType.Post
|
|
5887
6038
|
},
|
|
6039
|
+
publishCoAuth: {
|
|
6040
|
+
argNames: ["pageStream"],
|
|
6041
|
+
},
|
|
6042
|
+
restoreByLabel: {
|
|
6043
|
+
argNames: ["versionlabel"],
|
|
6044
|
+
},
|
|
5888
6045
|
query: {
|
|
5889
6046
|
argNames: ["oData"],
|
|
5890
6047
|
requestType: utils_1.RequestType.OData
|
|
5891
6048
|
},
|
|
5892
|
-
publishCoAuth: {
|
|
5893
|
-
argNames: ["pageStream"],
|
|
5894
|
-
},
|
|
5895
6049
|
saveDraft: {
|
|
5896
6050
|
argNames: ["sitePage"],
|
|
5897
6051
|
requestType: utils_1.RequestType.Post
|
|
@@ -5915,12 +6069,18 @@ exports.Mapper = {
|
|
|
5915
6069
|
argNames: ["pageStream"],
|
|
5916
6070
|
},
|
|
5917
6071
|
saveStreams: {
|
|
5918
|
-
argNames: ["contentStream", "sharedLockId"],
|
|
6072
|
+
argNames: ["contentStream", "sharedLockId", "scenario"],
|
|
5919
6073
|
},
|
|
5920
6074
|
schedulePublish: {
|
|
5921
6075
|
argNames: ["sitePage"],
|
|
5922
6076
|
requestType: utils_1.RequestType.Post
|
|
5923
6077
|
},
|
|
6078
|
+
sendTestEmail: {
|
|
6079
|
+
argNames: ["transpileContent", "subject", "sensitivityLabelId"],
|
|
6080
|
+
},
|
|
6081
|
+
sendTestTeamsMessage: {
|
|
6082
|
+
argNames: ["audienceId", "transpileContent"],
|
|
6083
|
+
},
|
|
5924
6084
|
sharePagePreviewByEmail: {
|
|
5925
6085
|
argNames: ["message", "recipientEmails"],
|
|
5926
6086
|
requestType: utils_1.RequestType.Post
|
|
@@ -5996,6 +6156,9 @@ exports.Mapper = {
|
|
|
5996
6156
|
}
|
|
5997
6157
|
},
|
|
5998
6158
|
"SP.Publishing.SitePage3D": {
|
|
6159
|
+
amplify: {
|
|
6160
|
+
argNames: ["request"],
|
|
6161
|
+
},
|
|
5999
6162
|
boostNews: {
|
|
6000
6163
|
argNames: ["SitePageBoost"],
|
|
6001
6164
|
},
|
|
@@ -6018,7 +6181,9 @@ exports.Mapper = {
|
|
|
6018
6181
|
argNames: ["lockId"],
|
|
6019
6182
|
},
|
|
6020
6183
|
discardPage: {},
|
|
6021
|
-
extendSessionCoAuth: {
|
|
6184
|
+
extendSessionCoAuth: {
|
|
6185
|
+
argNames: ["authoringMetadata"],
|
|
6186
|
+
},
|
|
6022
6187
|
getDependencyMetadata: {},
|
|
6023
6188
|
getHighlightsInfo: {},
|
|
6024
6189
|
getLatestVersionsInDescendingOrder: {
|
|
@@ -6037,6 +6202,9 @@ exports.Mapper = {
|
|
|
6037
6202
|
publishCoAuth: {
|
|
6038
6203
|
argNames: ["pageStream"],
|
|
6039
6204
|
},
|
|
6205
|
+
restoreByLabel: {
|
|
6206
|
+
argNames: ["versionlabel"],
|
|
6207
|
+
},
|
|
6040
6208
|
saveDraft: {
|
|
6041
6209
|
argNames: ["sitePage"],
|
|
6042
6210
|
},
|
|
@@ -6055,11 +6223,17 @@ exports.Mapper = {
|
|
|
6055
6223
|
argNames: ["pageStream"],
|
|
6056
6224
|
},
|
|
6057
6225
|
saveStreams: {
|
|
6058
|
-
argNames: ["contentStream", "sharedLockId"],
|
|
6226
|
+
argNames: ["contentStream", "sharedLockId", "scenario"],
|
|
6059
6227
|
},
|
|
6060
6228
|
schedulePublish: {
|
|
6061
6229
|
argNames: ["sitePage"],
|
|
6062
6230
|
},
|
|
6231
|
+
sendTestEmail: {
|
|
6232
|
+
argNames: ["transpileContent", "subject", "sensitivityLabelId"],
|
|
6233
|
+
},
|
|
6234
|
+
sendTestTeamsMessage: {
|
|
6235
|
+
argNames: ["audienceId", "transpileContent"],
|
|
6236
|
+
},
|
|
6063
6237
|
sharePagePreviewByEmail: {
|
|
6064
6238
|
argNames: ["message", "recipientEmails"],
|
|
6065
6239
|
},
|
|
@@ -6099,6 +6273,9 @@ exports.Mapper = {
|
|
|
6099
6273
|
enableAmplifyFromAnywhere: {},
|
|
6100
6274
|
enableAnnouncements: {},
|
|
6101
6275
|
enableCategories: {},
|
|
6276
|
+
getOrCreateAssetFolder: {
|
|
6277
|
+
argNames: ["pageName", "createFolderIfNeeded", "subFolderName", "pageId"],
|
|
6278
|
+
},
|
|
6102
6279
|
pagesInLib: {
|
|
6103
6280
|
argNames: ["id"],
|
|
6104
6281
|
},
|
|
@@ -6162,6 +6339,9 @@ exports.Mapper = {
|
|
|
6162
6339
|
},
|
|
6163
6340
|
},
|
|
6164
6341
|
"SP.Publishing.TopicSitePage": {
|
|
6342
|
+
amplify: {
|
|
6343
|
+
argNames: ["request"],
|
|
6344
|
+
},
|
|
6165
6345
|
boostNews: {
|
|
6166
6346
|
argNames: ["SitePageBoost"],
|
|
6167
6347
|
},
|
|
@@ -6184,7 +6364,9 @@ exports.Mapper = {
|
|
|
6184
6364
|
argNames: ["lockId"],
|
|
6185
6365
|
},
|
|
6186
6366
|
discardPage: {},
|
|
6187
|
-
extendSessionCoAuth: {
|
|
6367
|
+
extendSessionCoAuth: {
|
|
6368
|
+
argNames: ["authoringMetadata"],
|
|
6369
|
+
},
|
|
6188
6370
|
getDependencyMetadata: {},
|
|
6189
6371
|
getHighlightsInfo: {},
|
|
6190
6372
|
getLatestVersionsInDescendingOrder: {
|
|
@@ -6203,6 +6385,9 @@ exports.Mapper = {
|
|
|
6203
6385
|
publishCoAuth: {
|
|
6204
6386
|
argNames: ["pageStream"],
|
|
6205
6387
|
},
|
|
6388
|
+
restoreByLabel: {
|
|
6389
|
+
argNames: ["versionlabel"],
|
|
6390
|
+
},
|
|
6206
6391
|
saveDraft: {
|
|
6207
6392
|
argNames: ["sitePage"],
|
|
6208
6393
|
},
|
|
@@ -6221,7 +6406,13 @@ exports.Mapper = {
|
|
|
6221
6406
|
argNames: ["pageStream"],
|
|
6222
6407
|
},
|
|
6223
6408
|
saveStreams: {
|
|
6224
|
-
argNames: ["contentStream", "sharedLockId"],
|
|
6409
|
+
argNames: ["contentStream", "sharedLockId", "scenario"],
|
|
6410
|
+
},
|
|
6411
|
+
sendTestEmail: {
|
|
6412
|
+
argNames: ["transpileContent", "subject", "sensitivityLabelId"],
|
|
6413
|
+
},
|
|
6414
|
+
sendTestTeamsMessage: {
|
|
6415
|
+
argNames: ["audienceId", "transpileContent"],
|
|
6225
6416
|
},
|
|
6226
6417
|
schedulePublish: {
|
|
6227
6418
|
argNames: ["sitePage"],
|
|
@@ -6607,6 +6798,9 @@ exports.Mapper = {
|
|
|
6607
6798
|
requestType: utils_1.RequestType.GetWithArgsValueOnly
|
|
6608
6799
|
},
|
|
6609
6800
|
getHubSiteJoinApprovalCorrelationId: {},
|
|
6801
|
+
getMigrationJobProgress: {
|
|
6802
|
+
argNames: ["jobId", "nextToken"],
|
|
6803
|
+
},
|
|
6610
6804
|
getMigrationJobStatus: {
|
|
6611
6805
|
argNames: ["id"],
|
|
6612
6806
|
requestType: utils_1.RequestType.GetWithArgsValueOnly
|
|
@@ -7358,9 +7552,6 @@ exports.Mapper = {
|
|
|
7358
7552
|
requestType: utils_1.RequestType.Delete
|
|
7359
7553
|
},
|
|
7360
7554
|
dispose: {},
|
|
7361
|
-
loadUserProfile: {
|
|
7362
|
-
argNames: ["email"],
|
|
7363
|
-
},
|
|
7364
7555
|
readCache: {
|
|
7365
7556
|
argNames: ["folderPath"],
|
|
7366
7557
|
},
|
|
@@ -8319,10 +8510,6 @@ exports.Mapper = {
|
|
|
8319
8510
|
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
8320
8511
|
},
|
|
8321
8512
|
archive: {},
|
|
8322
|
-
attachImage: {
|
|
8323
|
-
argNames: ["imageStream", "imageName", "fieldInternalName"],
|
|
8324
|
-
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
8325
|
-
},
|
|
8326
8513
|
breakRoleInheritance: {
|
|
8327
8514
|
argNames: ["copyRoleAssignments", "clearSubscopes"],
|
|
8328
8515
|
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
@@ -8347,6 +8534,9 @@ exports.Mapper = {
|
|
|
8347
8534
|
name: "getUserEffectivePermissions(@user)?@user='[[userName]]'",
|
|
8348
8535
|
requestType: utils_1.RequestType.GetReplace
|
|
8349
8536
|
},
|
|
8537
|
+
getVersionById: {
|
|
8538
|
+
argNames: ["versionId"],
|
|
8539
|
+
},
|
|
8350
8540
|
getVersions: {
|
|
8351
8541
|
argNames: ["getVersionsParams"],
|
|
8352
8542
|
},
|