@pnp/sp-admin 4.0.0-alpha0-v4nightly.20240108 → 4.0.0-alpha0-v4nightly.20240109

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.
@@ -0,0 +1,310 @@
1
+ import { _SPInstance } from "@pnp/sp";
2
+ import { IRenderListDataParameters } from "@pnp/sp/lists/index.js";
3
+ import { IHubSiteInfo } from "@pnp/sp/hubsites/index.js";
4
+ import { IHomeSitesDetails, IPortalHealthStatus, IPowerAppsEnvironment, ISiteAdministratorsFieldsData, ISiteAdminsInfo, ISiteCreationProps, ISitePropertiesEnumerableFilter, ISiteUserGroupsData, ISPHubSiteCreationInfo, ISPOOperation, ISPOSiteCreationSource, ISPOWebTemplatesInfo, ITenantInfo, ITenantSitePropertiesInfo, IUpdateGroupSiteProperties, SPOHubSiteUserRights } from "./types.js";
5
+ declare class _Tenant extends _SPInstance<ITenantInfo> {
6
+ /**
7
+ * Choose which fields to return
8
+ *
9
+ * @param selects One or more fields to return
10
+ * @description we limit the selects here because there are so many values possible and it improves discoverability.
11
+ * Unfortunately this doesn't work as a general solution due to expands
12
+ */
13
+ select(...selects: ("*" | keyof ITenantInfo)[]): this;
14
+ /**
15
+ * Returns a site object for the given URL
16
+ *
17
+ * @param url URL of the requested site object
18
+ * @param includeDetail true to include details
19
+ * @returns Returns a site object for the given URL
20
+ */
21
+ getSitePropertiesByUrl(url: string, includeDetail?: boolean): Promise<Partial<ITenantSitePropertiesInfo>>;
22
+ /**
23
+ * Gets SPOSiteProperties objects for all sites from SharePoint in the tenancy that match the filter expression
24
+ *
25
+ * @param speFilter If the filter is null or empty string, then all the sites are returned
26
+ */
27
+ getSitePropertiesFromSharePointByFilters(speFilter: (Partial<ISitePropertiesEnumerableFilter> | null | "")): Promise<Partial<ITenantSitePropertiesInfo>[]>;
28
+ /**
29
+ * Get whether this tenant has valid education license
30
+ */
31
+ hasValidEducationLicense(): Promise<boolean>;
32
+ /**
33
+ * Queues a site collection for creation with the given properties
34
+ *
35
+ * @param siteCreationProperties The initial properties for the site which is to be created
36
+ * @returns Queues a site collection for creation with the given properties
37
+ */
38
+ createSite(siteCreationProperties: ISiteCreationProps): Promise<ISPOOperation>;
39
+ /**
40
+ * Gets all the SPWebTemplates on this Tenant
41
+ *
42
+ * @returns An SPOWebTemplateCollection containing a SPOWebTemplate information for each template
43
+ */
44
+ getSPOTenantAllWebTemplates(): Promise<ISPOWebTemplatesInfo>;
45
+ /**
46
+ * Handles updating the properties based on updateType of all the sites which are part of the groupId
47
+ *
48
+ * @param groupId Group Id
49
+ * @param siteId Site Id
50
+ * @param updateType Property which is required to be updated
51
+ * @param UpdateGroupSitePropertiesParameters
52
+ * @param parameters Params which are required to be passed based on the updateType
53
+ * @returns string denoting the user storage key which can be used by client to pull the async workflow status
54
+ */
55
+ updateGroupSiteProperties(groupId: string, siteId: string, updateType: "Unknow" | "StorageQuota", parameters?: Partial<IUpdateGroupSiteProperties>): Promise<string>;
56
+ /**
57
+ * Gets all the site collection templates available in SPO for the given UI culture
58
+ *
59
+ * @returns An SPOWebTemplateCollection for all the site collection templates available in SPO for the given UI culture.
60
+ */
61
+ getSPOAllWebTemplates(cultureName: string, compatibilityLevel: number): Promise<ISPOWebTemplatesInfo>;
62
+ /**
63
+ * Gets all the SPWebTemplates for site collections on this Tenant
64
+ *
65
+ * @returns An SPOWebTemplateCollection for all the site collection templates available in SPO for the given UI culture.
66
+ */
67
+ getSPOTenantWebTemplates(localeId: number, compatibilityLevel: number): Promise<ISPOWebTemplatesInfo>;
68
+ /**
69
+ * Returns the site header logo by site URL.
70
+ *
71
+ * @param siteUrl Absolute URL to the site
72
+ * @returns Stream containing the site logo data
73
+ */
74
+ getSiteThumbnailLogo(siteUrl: string): Promise<ArrayBuffer>;
75
+ /**
76
+ * Gets all the SPSiteCreationSources
77
+ */
78
+ getSPOSiteCreationSources(): Promise<ISPOSiteCreationSource[]>;
79
+ /**
80
+ * Deletes the site to the recycle bin
81
+ *
82
+ * @param siteUrl Absolute url of the site to remove
83
+ */
84
+ removeSite(siteUrl: string): Promise<ISPOOperation>;
85
+ /**
86
+ * Gets the health Status of the site
87
+ *
88
+ * @param sourceUrl Absolute url of the site
89
+ */
90
+ getSiteHealthStatus(sourceUrl: string): Promise<IPortalHealthStatus>;
91
+ /**
92
+ * Performs the Swap operation on the provided sites
93
+ */
94
+ swapSiteWithSmartGestureOptionForce(sourceUrl: string, targetUrl: string, archiveUrl: string, includeSmartGestures: boolean, force: boolean): Promise<ISPOOperation>;
95
+ /**
96
+ * Performs the Swap operation on the provided sites
97
+ */
98
+ swapSiteWithSmartGestureOption(sourceUrl: string, targetUrl: string, archiveUrl: string, includeSmartGestures: boolean): Promise<ISPOOperation>;
99
+ /**
100
+ * Performs the Swap operation on the provided sites
101
+ */
102
+ swapSite(sourceUrl: string, targetUrl: string, archiveUrl: string): Promise<ISPOOperation>;
103
+ /**
104
+ * Permanently deletes the site from the recycle bin
105
+ *
106
+ * @param siteUrl URL of the site to be deleted
107
+ */
108
+ removeDeletedSite(siteUrl: string): Promise<ISPOOperation>;
109
+ /**
110
+ * Permanently deletes the site from the recycle bin
111
+ *
112
+ * @param siteUrl URL of the site to be deleted
113
+ * @param siteId SiteID of the site to be deleted
114
+ */
115
+ removeDeletedSitePreferId(siteUrl: string, siteId: string): Promise<ISPOOperation>;
116
+ /**
117
+ * Restores site from deleted state (recycle bin)
118
+ *
119
+ * @param siteUrl URL of the site to be restored
120
+ */
121
+ restoreDeletedSite(siteUrl: string): Promise<ISPOOperation>;
122
+ /**
123
+ * Restores site from deleted state (recycle bin)
124
+ *
125
+ * @param siteId SiteID of the site to be restored
126
+ */
127
+ restoreDeletedSiteById(siteId: string): Promise<ISPOOperation>;
128
+ /**
129
+ * Restores site from deleted state (recycle bin)
130
+ *
131
+ * @param siteUrl URL of the site to be restored
132
+ * @param siteId SiteID of the site to be deleted
133
+ */
134
+ restoreDeletedSitePreferId(siteUrl: string, siteId: string): Promise<ISPOOperation>;
135
+ /**
136
+ * A collection of PowerApps environments
137
+ */
138
+ getPowerAppsEnvironments(): Promise<IPowerAppsEnvironment[]>;
139
+ /**
140
+ * Sets the configuration values for Idle session sign out for unmanaged devices
141
+ * @param enabled Boolean indicating if the policy should be enabled
142
+ * @param warnAfter TimeSpan containing the time before warning the user
143
+ * @param signOutAfter TimeSpan containing the time before signing out the user
144
+ * @returns True if the operation succeeds, false otherwise
145
+ */
146
+ setIdleSessionSignOutForUnmanagedDevices(enabled: boolean, warnAfter: string, signOutAfter: string): Promise<IPowerAppsEnvironment[]>;
147
+ /**
148
+ * Gets the configuration values for Idle session sign out for unmanaged devices
149
+ */
150
+ getIdleSessionSignOutForUnmanagedDevices(): Promise<string>;
151
+ /**
152
+ * RESTful API to export SPList to CSV file and return file download link
153
+ *
154
+ * @param viewXml XML of the export view
155
+ */
156
+ exportToCSV(viewXml: string): Promise<string>;
157
+ /**
158
+ * RESTful API to export SPList to CSV file and return file download link
159
+ *
160
+ * @param viewXml XML of the export view
161
+ * @param listName Name of Admin SPList to be exported
162
+ */
163
+ exportAdminListToCSV(viewXml: string, listName: string): Promise<string>;
164
+ /**
165
+ * RESTful API to set site's user groups
166
+ *
167
+ */
168
+ setSiteUserGroups(siteUserGroupsData: ISiteUserGroupsData): Promise<void>;
169
+ /**
170
+ * RESTful API to set site administrators
171
+ */
172
+ setSiteAdministrators(siteAdministratorsFieldsData: ISiteAdministratorsFieldsData): Promise<void>;
173
+ /**
174
+ * RESTful API to check tenant licenses.
175
+ *
176
+ * @returns True if and only if tenant has all licenses in parameter
177
+ */
178
+ checkTenantLicenses(licenses: string[]): Promise<boolean>;
179
+ /**
180
+ * RESTful API to check tenant intune license
181
+ */
182
+ checkTenantIntuneLicense(): Promise<boolean>;
183
+ /**
184
+ * Gets a list of site administrators for the given site
185
+ *
186
+ * @param siteId guid site id
187
+ * @returns Array of site admins
188
+ */
189
+ getSiteAdministrators(siteId: string): Promise<ISiteAdminsInfo[]>;
190
+ /**
191
+ * Renders Tenant Admin SPList Data after filtering based on the groupId the site belongs to
192
+ *
193
+ * @param groupId Group Id the sites belong to
194
+ */
195
+ renderFilteredAdminListDataByGroupId(groupId: string): Promise<ArrayBuffer>;
196
+ /**
197
+ * Renders Tenant Admin SPList Data
198
+ */
199
+ renderAdminListData(listName: string, parameters: IRenderListDataParameters, overrideParameters?: any): Promise<ArrayBuffer>;
200
+ /**
201
+ * Renders Tenant Admin SPList Data after filtering based on filter conditions
202
+ */
203
+ renderFilteredAdminListData(listName: string, parameters: IRenderListDataParameters): Promise<ArrayBuffer>;
204
+ /**
205
+ * Gets SPList total item Count
206
+ *
207
+ * @param listName Optional List Name. By Default Aggregated TenantAdmin SPList will be used
208
+ * @returns List item count
209
+ */
210
+ getSPListItemCount(listName?: string): Promise<number>;
211
+ /**
212
+ * Registers the site with the specified URL as a HubSite
213
+ *
214
+ * @param siteUrl The URL of the site to make into a HubSite
215
+ * @returns The properties of the new HubSite
216
+ */
217
+ registerHubSite(siteUrl: string): Promise<IHubSiteInfo>;
218
+ /**
219
+ * Registers the site with the specified URL as a HubSite
220
+ *
221
+ * @param siteUrl The URL of the site to make into a HubSite
222
+ * @param creationInformation Information used to create this HubSite, If not specified, some default properties will be set instead
223
+ * @returns The properties of the new HubSite
224
+ */
225
+ registerHubSiteWithCreationInformation(siteUrl: string, creationInformation?: Partial<ISPHubSiteCreationInfo>): Promise<IHubSiteInfo>;
226
+ /**
227
+ * Makes the specified site no longer a HubSite and removes it from the list of HubSites The site is not deleted by this operation;
228
+ * it is merely removed from the list of available HubSites
229
+ *
230
+ * @param siteUrl The URL of the site which should no longer be a HubSite
231
+ */
232
+ unregisterHubSite(siteUrl: string): Promise<IHubSiteInfo>;
233
+ /**
234
+ * Connects a site to a HubSite using hub site id, support multi-geo
235
+ *
236
+ * @param siteUrl URL of the site to connect to the HubSite
237
+ * @param hubSiteId Guid of the HubSite ID
238
+ */
239
+ connectSiteToHubSiteById(siteUrl: string, hubSiteId: string): Promise<void>;
240
+ /**
241
+ * Grant HubSite rights to users giving HubSite ID, support multi-geo
242
+ *
243
+ * @param hubSiteId ID of the HubSite
244
+ * @param principals principals of users to grant rights
245
+ * @param grantedRights The HubSite rights to grant
246
+ */
247
+ grantHubSiteRightsById(hubSiteId: string, principals: string[], grantedRights: SPOHubSiteUserRights): Promise<IHubSiteInfo>;
248
+ /**
249
+ * Revoke HubSite rights from users giving HubSite ID, support multi-geo
250
+ *
251
+ * @param hubSiteId ID of the HubSite
252
+ * @param principals principals of users to revoke rights
253
+ */
254
+ revokeHubSiteRightsById(hubSiteId: string, principals: string[]): Promise<IHubSiteInfo>;
255
+ /**
256
+ * Get the home site Ids, url and site title
257
+ *
258
+ * @param bypasscache bypass tenant store cache
259
+ * @param expandDetails call the expensive API with cross geo call to fill siteUrl and site title
260
+ */
261
+ getHomeSitesDetails(bypasscache?: boolean, expandDetails?: boolean): Promise<IHomeSitesDetails>;
262
+ /**
263
+ * Add a new home site in tenant admin setting
264
+ *
265
+ * @param homeSiteUrl The home site URL
266
+ * @param audiences The targeting audiences
267
+ * @param order The rank order of this home site. The order starts at 1, defaults to end of order if not provided
268
+ * @returns Details about ID, title, URL from the adding home site
269
+ */
270
+ addHomeSite(homeSiteUrl: string, audiences: string[], order?: number): Promise<IHomeSitesDetails>;
271
+ /**
272
+ * Update the home site with specific URL for its audiences
273
+ *
274
+ * @param homeSiteUrl The home site URL
275
+ * @param audiences The targeting audiences
276
+ * @param order The rank order of this home site. The order starts at 1, defaults to end of order if not provided
277
+ * @returns Details about ID, title, URL from the adding home site
278
+ */
279
+ updateHomeSite(homeSiteUrl: string, audiences: string[], order?: number): Promise<IHomeSitesDetails>;
280
+ /**
281
+ * Reorder the rank of all home sites in tenant admin setting
282
+ *
283
+ * @param homeSitesSiteIds All home sites siteId with new order
284
+ * @returns Details about siteId and webId from all home sites in a new order
285
+ */
286
+ reorderHomeSites(homeSitesSiteIds: string[]): Promise<IHomeSitesDetails[]>;
287
+ /**
288
+ * Remove a home site in tenant admin setting
289
+ *
290
+ * @param homeSiteUrl The home site URL
291
+ */
292
+ removeHomeSite(homeSiteUrl: string): Promise<void>;
293
+ /**
294
+ * Get site subscription id
295
+ */
296
+ getSiteSubscriptionId(): Promise<string>;
297
+ /**
298
+ * Supports calling POST methods not added explicitly to this class
299
+ *
300
+ * @param method method name, used in url path (ex: "CreateGroupForSite")
301
+ * @param args optional, any arguments to include in the body
302
+ * @returns The result of the method invocation T
303
+ */
304
+ call<T = any>(method: string, args?: any): Promise<T>;
305
+ }
306
+ export interface ITenant extends _Tenant {
307
+ }
308
+ export declare const Tenant: import("@pnp/sp").ISPInvokableFactory<ITenant>;
309
+ export {};
310
+ //# sourceMappingURL=tenant.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant.d.ts","sourceRoot":"","sources":["../../../../packages/sp-admin/tenant.ts"],"names":[],"mappings":"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"}