@@ -498,6 +498,22 @@ def folder_coloring(self):
498498
499499 return FolderColoring (self , ResourcePath ("foldercoloring" ))
500500
501+ @property
502+ def font_packages (self ):
503+ """Alias to FontPackageCollection"""
504+
505+ from office365 .sharepoint .fontpackages .collection import FontPackageCollection
506+
507+ return FontPackageCollection (self , ResourcePath ("fontpackages" ))
508+
509+ @property
510+ def site_font_packages (self ):
511+ """Alias to FontPackageCollection"""
512+
513+ from office365 .sharepoint .fontpackages .collection import FontPackageCollection
514+
515+ return FontPackageCollection (self , ResourcePath ("sitefontpackages" ))
516+
501517 @property
502518 def group_site_manager (self ):
503519 """Alias to GroupSiteManager"""
@@ -542,6 +558,16 @@ def profile_loader(self):
542558
543559 return ProfileLoader (self )
544560
561+ @property
562+ def document_crawl_log (self ):
563+ """Alias to DocumentCrawlLog"""
564+
565+ from office365 .sharepoint .search .administration .document_crawl_log import (
566+ DocumentCrawlLog ,
567+ )
568+
569+ return DocumentCrawlLog (self )
570+
545571 @property
546572 def lists (self ):
547573 """Alias to ListCollection. Gets information about all lists that the current user can access."""
@@ -636,7 +662,7 @@ def home_service(self):
636662 @property
637663 def home_site (self ):
638664 """Alias to SPHSite."""
639- from office365 .sharepoint .sites .sph_site import SPHSite
665+ from office365 .sharepoint .sites .home . site import SPHSite
640666
641667 return SPHSite (self , ResourcePath ("SPHSite" ))
642668
0 commit comments