@pnp/sp-admin 4.0.0-alpha0-v4nightly.20240223 → 4.0.0-alpha0-v4nightly.20240228
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/index.d.ts.map +1 -0
- package/index.js.map +1 -0
- package/office-tenant.d.ts.map +1 -0
- package/office-tenant.js.map +1 -0
- package/package.json +6 -19
- package/site-properties.d.ts.map +1 -0
- package/site-properties.js.map +1 -0
- package/tenant.d.ts.map +1 -0
- package/tenant.js.map +1 -0
- package/types.d.ts.map +1 -0
- package/types.js.map +1 -0
- package/commonjs/index.d.ts.map +0 -1
- package/commonjs/index.js +0 -30
- package/commonjs/index.js.map +0 -1
- package/commonjs/office-tenant.d.ts.map +0 -1
- package/commonjs/office-tenant.js +0 -515
- package/commonjs/office-tenant.js.map +0 -1
- package/commonjs/package.json +0 -1
- package/commonjs/site-properties.d.ts.map +0 -1
- package/commonjs/site-properties.js +0 -47
- package/commonjs/site-properties.js.map +0 -1
- package/commonjs/tenant.d.ts.map +0 -1
- package/commonjs/tenant.js +0 -530
- package/commonjs/tenant.js.map +0 -1
- package/commonjs/types.d.ts.map +0 -1
- package/commonjs/types.js +0 -269
- package/commonjs/types.js.map +0 -1
- package/esm/index.d.ts +0 -20
- package/esm/index.d.ts.map +0 -1
- package/esm/index.js.map +0 -1
- package/esm/office-tenant.d.ts +0 -316
- package/esm/office-tenant.d.ts.map +0 -1
- package/esm/office-tenant.js.map +0 -1
- package/esm/package.json +0 -1
- package/esm/site-properties.d.ts +0 -29
- package/esm/site-properties.d.ts.map +0 -1
- package/esm/site-properties.js.map +0 -1
- package/esm/tenant.d.ts +0 -310
- package/esm/tenant.d.ts.map +0 -1
- package/esm/tenant.js.map +0 -1
- package/esm/types.d.ts +0 -1610
- package/esm/types.d.ts.map +0 -1
- package/esm/types.js.map +0 -1
- /package/{commonjs/index.d.ts → index.d.ts} +0 -0
- /package/{esm/index.js → index.js} +0 -0
- /package/{commonjs/office-tenant.d.ts → office-tenant.d.ts} +0 -0
- /package/{esm/office-tenant.js → office-tenant.js} +0 -0
- /package/{commonjs/site-properties.d.ts → site-properties.d.ts} +0 -0
- /package/{esm/site-properties.js → site-properties.js} +0 -0
- /package/{commonjs/tenant.d.ts → tenant.d.ts} +0 -0
- /package/{esm/tenant.js → tenant.js} +0 -0
- /package/{commonjs/types.d.ts → types.d.ts} +0 -0
- /package/{esm/types.js → types.js} +0 -0
package/esm/types.d.ts
DELETED
|
@@ -1,1610 +0,0 @@
|
|
|
1
|
-
import { IResourcePath } from "@pnp/sp";
|
|
2
|
-
export interface IOffice365TenantInfo {
|
|
3
|
-
/**
|
|
4
|
-
* Gets a value to specify what external sharing capabilities are available. Modifying this property
|
|
5
|
-
* does not impact any settings stored on individual site collections. This property has no impact on Partner
|
|
6
|
-
* users (users added via a support partner).
|
|
7
|
-
*/
|
|
8
|
-
SharingCapability: SharingCapabilities;
|
|
9
|
-
/**
|
|
10
|
-
* Gets a value to specify what external sharing capabilities are available in ODB. Modifying this property
|
|
11
|
-
* will impact settings stored on individual site collections.
|
|
12
|
-
*/
|
|
13
|
-
ODBSharingCapability: SharingCapabilities;
|
|
14
|
-
/**
|
|
15
|
-
* Gets a value to specify if user accepting invitation must use the same email address invitation was sent to.
|
|
16
|
-
*/
|
|
17
|
-
RequireAcceptingAccountMatchInvitedAccount: boolean;
|
|
18
|
-
/**
|
|
19
|
-
* Gets a bool value that if user checks generate mobile friendly Urls setting
|
|
20
|
-
*/
|
|
21
|
-
MobileFriendlyUrlEnabled: boolean;
|
|
22
|
-
/**
|
|
23
|
-
* Gets a value to handle the tenant who can share settings
|
|
24
|
-
*/
|
|
25
|
-
WhoCanShareAllowList: string;
|
|
26
|
-
/**
|
|
27
|
-
* Gets a value to handle guest sharing group's allow list
|
|
28
|
-
*/
|
|
29
|
-
AllowSelectSGsInODBList: string[];
|
|
30
|
-
/**
|
|
31
|
-
* Gets a value to handle email attestation.
|
|
32
|
-
*/
|
|
33
|
-
EmailAttestationEnabled: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Gets a value to handle guest sharing group's allow list
|
|
36
|
-
*/
|
|
37
|
-
GuestSharingGroupAllowList: string;
|
|
38
|
-
/**
|
|
39
|
-
* Gets a value to handle guest user sharing to users not in guest user site collection
|
|
40
|
-
*/
|
|
41
|
-
AllowGuestUserShareToUsersNotInSiteCollection: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Gets a Boolean value that specifies whether tenant users see the "Start a fresh site" menu option
|
|
44
|
-
*/
|
|
45
|
-
DisplayStartASiteOption: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* Gets a string which specifies the URL of the form to load in the Start a Site dialog
|
|
48
|
-
*/
|
|
49
|
-
StartASiteFormUrl: string;
|
|
50
|
-
/**
|
|
51
|
-
* Gets a Boolean value that specifies whether external services are enabled for the tenancy
|
|
52
|
-
*/
|
|
53
|
-
ExternalServicesEnabled: boolean;
|
|
54
|
-
/**
|
|
55
|
-
* Gets a Boolean value that specifies whether all users' My Sites are public by default
|
|
56
|
-
*/
|
|
57
|
-
MySitesPublicEnabled: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* Gets a Boolean value that specifies whether Everyone is visible in people picker dialogs
|
|
60
|
-
*/
|
|
61
|
-
ShowEveryoneClaim: boolean;
|
|
62
|
-
/**
|
|
63
|
-
* Gets a Boolean value that specifies whether AllUsers is visible in people picker dialogs
|
|
64
|
-
*/
|
|
65
|
-
ShowAllUsersClaim: boolean;
|
|
66
|
-
/**
|
|
67
|
-
* Gets a Boolean value that specifies whether EveryoneExceptExternalUsers is visible in people picker dialogs
|
|
68
|
-
*/
|
|
69
|
-
ShowEveryoneExceptExternalUsersClaim: boolean;
|
|
70
|
-
/**
|
|
71
|
-
* Gets a Boolean value that specifies whether EveryoneExceptExternalUsers is allowed in people picker dialogs for private group site
|
|
72
|
-
*/
|
|
73
|
-
AllowEveryoneExceptExternalUsersClaimInPrivateSite: boolean;
|
|
74
|
-
/**
|
|
75
|
-
* Gets a Boolean value that specifies whether Search and Resolve Operations in people picker dialogs do an exact match against UPN/Email
|
|
76
|
-
* Default behavior is doing startswith match against common properties
|
|
77
|
-
*/
|
|
78
|
-
SearchResolveExactEmailOrUPN: boolean;
|
|
79
|
-
/**
|
|
80
|
-
* Gets a Boolean value that specifies whether the ML Capture settings should be shown
|
|
81
|
-
*/
|
|
82
|
-
MachineLearningCaptureEnabled: boolean;
|
|
83
|
-
/**
|
|
84
|
-
* Gets a SiteInfoForSitePicker instance that represents a site that tenant has opted-in as default Content Center site
|
|
85
|
-
*/
|
|
86
|
-
DefaultContentCenterSite: ISiteInfoForSitePicker;
|
|
87
|
-
/**
|
|
88
|
-
* Gets a Boolean value that specifies whether the AIBuilder features should be shown
|
|
89
|
-
*/
|
|
90
|
-
AIBuilderEnabled: boolean;
|
|
91
|
-
/**
|
|
92
|
-
* Gets the default PowerApps environment in which SharePoint Syntex form processing feature will create model
|
|
93
|
-
*/
|
|
94
|
-
AIBuilderDefaultPowerAppsEnvironment: string;
|
|
95
|
-
/**
|
|
96
|
-
* Gets a collection value that specifies the sites for AIBuilderEnabled features
|
|
97
|
-
*/
|
|
98
|
-
AIBuilderSiteList: string[];
|
|
99
|
-
/**
|
|
100
|
-
* Gets name of the file which contains the list of AIBuilder enabled sites
|
|
101
|
-
*/
|
|
102
|
-
AIBuilderSiteListFileName: string;
|
|
103
|
-
/**
|
|
104
|
-
* Gets a collection value that specifies the sites for AIBuilderEnabled features
|
|
105
|
-
*/
|
|
106
|
-
AIBuilderSiteInfoList: ISiteInfoForSitePicker[];
|
|
107
|
-
/**
|
|
108
|
-
* Gets Syntex consumption billing settings
|
|
109
|
-
*/
|
|
110
|
-
SyntexBillingSubscriptionSettings: ISyntexBillingContext;
|
|
111
|
-
/**
|
|
112
|
-
* Gets a status value that specifies the image tagging option
|
|
113
|
-
*/
|
|
114
|
-
ImageTaggingOption: ImageTaggingChoice;
|
|
115
|
-
/**
|
|
116
|
-
* Gets a status value that specifies whether admin is done with the configuration setup
|
|
117
|
-
*/
|
|
118
|
-
HasAdminCompletedCUConfiguration: boolean;
|
|
119
|
-
/**
|
|
120
|
-
* Gets a Boolean value that specifies whether ADAL is disabled or not
|
|
121
|
-
*/
|
|
122
|
-
OfficeClientADALDisabled: boolean;
|
|
123
|
-
/**
|
|
124
|
-
* Gets a Boolean value that specifies whether legacy auth protocols are enabled. These include MsoFba and IDCRL.
|
|
125
|
-
*/
|
|
126
|
-
LegacyAuthProtocolsEnabled: boolean;
|
|
127
|
-
/**
|
|
128
|
-
* Gets a Boolean value that specifies whether ACS app only token are blocked.
|
|
129
|
-
*/
|
|
130
|
-
DisableCustomAppAuthentication: boolean;
|
|
131
|
-
/**
|
|
132
|
-
* Gets the link to organization help page in case of access denied due to conditional access policy
|
|
133
|
-
*/
|
|
134
|
-
ConditionalAccessPolicyErrorHelpLink: string;
|
|
135
|
-
/**
|
|
136
|
-
* Gets a Boolean value that specifies whether the following policy is enabled
|
|
137
|
-
*/
|
|
138
|
-
BlockDownloadOfViewableFilesOnUnmanagedDevices: boolean;
|
|
139
|
-
/**
|
|
140
|
-
* Gets a Boolean value that specifies whether the following policy is enabled
|
|
141
|
-
*/
|
|
142
|
-
BlockDownloadOfAllFilesOnUnmanagedDevices: boolean;
|
|
143
|
-
/**
|
|
144
|
-
* Gets a Boolean value that specifies whether the following access setting is enabled
|
|
145
|
-
*/
|
|
146
|
-
BlockAccessOnUnmanagedDevices: boolean;
|
|
147
|
-
/**
|
|
148
|
-
* Gets a Boolean value that specifies whether the following access setting is enabled
|
|
149
|
-
*/
|
|
150
|
-
AllowLimitedAccessOnUnmanagedDevices: boolean;
|
|
151
|
-
/**
|
|
152
|
-
* Gets a Boolean value that specifies whether the following policy is enabled
|
|
153
|
-
*/
|
|
154
|
-
BlockDownloadOfViewableFilesForGuests: boolean;
|
|
155
|
-
/**
|
|
156
|
-
* Gets a Boolean value that specifies whether the following policy is enabled
|
|
157
|
-
*/
|
|
158
|
-
BlockDownloadOfAllFilesForGuests: boolean;
|
|
159
|
-
/**
|
|
160
|
-
* Gets whether ODB sites should have the Shared with Everyone folder automatically provisioned or not
|
|
161
|
-
*/
|
|
162
|
-
ProvisionSharedWithEveryoneFolder: boolean;
|
|
163
|
-
/**
|
|
164
|
-
* Gets the domain to which to accelerate the sign-in experience to. i.e. by skipping the OrgID/EvoSTS sign-in page for end-user
|
|
165
|
-
*/
|
|
166
|
-
SignInAccelerationDomain: string;
|
|
167
|
-
/**
|
|
168
|
-
* Gets a value to force auto-acceleration sign-in on the tenant regardless of its external sharing status
|
|
169
|
-
*/
|
|
170
|
-
EnableGuestSignInAcceleration: boolean;
|
|
171
|
-
/**
|
|
172
|
-
* Gets a Boolean value that specifies whether ExplorerView feature uses persistent cookies
|
|
173
|
-
*/
|
|
174
|
-
UsePersistentCookiesForExplorerView: boolean;
|
|
175
|
-
/**
|
|
176
|
-
* Gets a value to specify if external users can reshare regardless of Members Can Share state
|
|
177
|
-
*/
|
|
178
|
-
PreventExternalUsersFromResharing: boolean;
|
|
179
|
-
/**
|
|
180
|
-
* A list of site templates that tenant has opted-in/opted-out to sync Content types
|
|
181
|
-
*/
|
|
182
|
-
ContentTypeSyncSiteTemplatesList: string[];
|
|
183
|
-
/**
|
|
184
|
-
* Gets a value to specify if BCC functionality is enabled for external invitations
|
|
185
|
-
*/
|
|
186
|
-
BccExternalSharingInvitations: boolean;
|
|
187
|
-
/**
|
|
188
|
-
* Gets list of recipients to be BCC'ed on all external sharing invitations
|
|
189
|
-
*/
|
|
190
|
-
BccExternalSharingInvitationsList: string;
|
|
191
|
-
/**
|
|
192
|
-
* Gets a value to specify if User Voice for customer feedback is enabled
|
|
193
|
-
*/
|
|
194
|
-
UserVoiceForFeedbackEnabled: boolean;
|
|
195
|
-
/**
|
|
196
|
-
* Gets a value to specify if External Image Search is enabled on the File Picker
|
|
197
|
-
*/
|
|
198
|
-
FilePickerExternalImageSearchEnabled: boolean;
|
|
199
|
-
/**
|
|
200
|
-
* Gets a all Organization Assets libraries
|
|
201
|
-
*/
|
|
202
|
-
GetOrgAssets: ISPOrgAssets;
|
|
203
|
-
/**
|
|
204
|
-
* Gets whether Email Attestation is enabled
|
|
205
|
-
*/
|
|
206
|
-
EmailAttestationRequired: boolean;
|
|
207
|
-
/**
|
|
208
|
-
* Gets the number of days between reattestation
|
|
209
|
-
*/
|
|
210
|
-
EmailAttestationReAuthDays: number;
|
|
211
|
-
/**
|
|
212
|
-
* Gets whether external user expiration is enabled
|
|
213
|
-
*/
|
|
214
|
-
ExternalUserExpirationRequired: boolean;
|
|
215
|
-
/**
|
|
216
|
-
* Gets the number of days before external user expiration if not individually extended
|
|
217
|
-
*/
|
|
218
|
-
ExternalUserExpireInDays: number;
|
|
219
|
-
/**
|
|
220
|
-
* Gets whether or not the synced tenant properties will be updated on the next request
|
|
221
|
-
*/
|
|
222
|
-
SyncPrivacyProfileProperties: boolean;
|
|
223
|
-
/**
|
|
224
|
-
* Gets whether or not the AAD B2B management policy will be synced on the next request
|
|
225
|
-
*/
|
|
226
|
-
SyncAadB2BManagementPolicy: boolean;
|
|
227
|
-
/**
|
|
228
|
-
* Gets the Stream Launch Config stat
|
|
229
|
-
*/
|
|
230
|
-
StreamLaunchConfig: number;
|
|
231
|
-
/**
|
|
232
|
-
* Gets the Stream Launch Config Last Updated value
|
|
233
|
-
*/
|
|
234
|
-
StreamLaunchConfigLastUpdated: Date;
|
|
235
|
-
/**
|
|
236
|
-
* Gets the Stream Launch Config update count
|
|
237
|
-
*/
|
|
238
|
-
StreamLaunchConfigUpdateCount: number;
|
|
239
|
-
/**
|
|
240
|
-
* Gets the Auth Context Resilient Mode
|
|
241
|
-
*/
|
|
242
|
-
AuthContextResilienceMode: SPResilienceModeType;
|
|
243
|
-
/**
|
|
244
|
-
* Gets a value to specify the number of days that anonymous links expire
|
|
245
|
-
*/
|
|
246
|
-
RequireAnonymousLinksExpireInDays: number;
|
|
247
|
-
/**
|
|
248
|
-
* Gets a value to specify a space separated list of allowed domain names
|
|
249
|
-
*/
|
|
250
|
-
SharingAllowedDomainList: string;
|
|
251
|
-
/**
|
|
252
|
-
* Gets a value to specify a space separated list of blocked domain names
|
|
253
|
-
*/
|
|
254
|
-
SharingBlockedDomainList: string;
|
|
255
|
-
/**
|
|
256
|
-
* Gets a value to specify the restriction mode
|
|
257
|
-
*/
|
|
258
|
-
SharingDomainRestrictionMode: SharingDomainRestrictionModes;
|
|
259
|
-
/**
|
|
260
|
-
* Gets a value that allows members to search all existing guest users in the directory
|
|
261
|
-
*/
|
|
262
|
-
ShowPeoplePickerSuggestionsForGuestUsers: boolean;
|
|
263
|
-
/**
|
|
264
|
-
* Gets default sharing link type
|
|
265
|
-
*/
|
|
266
|
-
DefaultSharingLinkType: SharingLinkType;
|
|
267
|
-
/**
|
|
268
|
-
* Gets file anonymous link type
|
|
269
|
-
*/
|
|
270
|
-
FileAnonymousLinkType: AnonymousLinkType;
|
|
271
|
-
/**
|
|
272
|
-
* Gets folder anonymous link type
|
|
273
|
-
*/
|
|
274
|
-
FolderAnonymousLinkType: AnonymousLinkType;
|
|
275
|
-
/**
|
|
276
|
-
* Gets ODBMCS
|
|
277
|
-
*/
|
|
278
|
-
ODBMembersCanShare: string;
|
|
279
|
-
/**
|
|
280
|
-
* Gets ODBAccessRequests
|
|
281
|
-
*/
|
|
282
|
-
ODBAccessRequests: SharingState;
|
|
283
|
-
/**
|
|
284
|
-
* Gets a value to specify if site owner will get email notification if the user shared an item with external user
|
|
285
|
-
*/
|
|
286
|
-
NotifyOwnersWhenItemsReshared: boolean;
|
|
287
|
-
/**
|
|
288
|
-
* Gets a value to specify if site owner will get email notification if the external user accepts the invitation
|
|
289
|
-
*/
|
|
290
|
-
NotifyOwnersWhenInvitationsAccepted: boolean;
|
|
291
|
-
/**
|
|
292
|
-
* Gets a value to specify if site owner will get notification if the user created/updated an anonymous link in ODB
|
|
293
|
-
*/
|
|
294
|
-
OwnerAnonymousNotification: boolean;
|
|
295
|
-
/**
|
|
296
|
-
* Gets a value to enable or disable push notifications in OneDrive
|
|
297
|
-
*/
|
|
298
|
-
NotificationsInOneDriveForBusinessEnabled: boolean;
|
|
299
|
-
/**
|
|
300
|
-
* Gets a value to enable or disable push notifications in SharePoint
|
|
301
|
-
*/
|
|
302
|
-
NotificationsInSharePointEnabled: boolean;
|
|
303
|
-
/**
|
|
304
|
-
* Whether comments on site pages are disabled or not
|
|
305
|
-
*/
|
|
306
|
-
CommentsOnSitePagesDisabled: boolean;
|
|
307
|
-
/**
|
|
308
|
-
* Whether comments on files are disabled or not
|
|
309
|
-
*/
|
|
310
|
-
CommentsOnFilesDisabled: boolean;
|
|
311
|
-
/**
|
|
312
|
-
* Whether comments on list items are disabled or not
|
|
313
|
-
*/
|
|
314
|
-
CommentsOnListItemsDisabled: boolean;
|
|
315
|
-
/**
|
|
316
|
-
* Whether viewers commenting on media items is disabled or not
|
|
317
|
-
*/
|
|
318
|
-
ViewersCanCommentOnMediaDisabled: boolean;
|
|
319
|
-
/**
|
|
320
|
-
* Whether social bar on site pages is enabled or not
|
|
321
|
-
*/
|
|
322
|
-
SocialBarOnSitePagesDisabled: boolean;
|
|
323
|
-
/**
|
|
324
|
-
* Gets default link permission
|
|
325
|
-
*/
|
|
326
|
-
DefaultLinkPermission: SharingLinkType;
|
|
327
|
-
BlockDownloadLinksFileType: BlockDownloadLinksFileTypes;
|
|
328
|
-
/**
|
|
329
|
-
* Gets a value to specify whether anyone links should track link users
|
|
330
|
-
*/
|
|
331
|
-
AnyoneLinkTrackUsers: boolean;
|
|
332
|
-
/**
|
|
333
|
-
* Gets collaboration type for fluid on OneDrive partition
|
|
334
|
-
*/
|
|
335
|
-
OneDriveLoopSharingCapability: SharingCapabilities;
|
|
336
|
-
/**
|
|
337
|
-
* Gets default share link scope for fluid on OneDrive partition
|
|
338
|
-
*/
|
|
339
|
-
OneDriveLoopDefaultSharingLinkScope: SharingScope;
|
|
340
|
-
/**
|
|
341
|
-
* Gets default share link role for fluid on OneDrive partition
|
|
342
|
-
*/
|
|
343
|
-
OneDriveLoopDefaultSharingLinkRole: number;
|
|
344
|
-
/**
|
|
345
|
-
* Gets request files link enabled on OneDrive partition
|
|
346
|
-
*/
|
|
347
|
-
OneDriveRequestFilesLinkEnabled: boolean;
|
|
348
|
-
/**
|
|
349
|
-
* Gets request files link expiration days on OneDrive partition
|
|
350
|
-
*/
|
|
351
|
-
OneDriveRequestFilesLinkExpirationInDays: number;
|
|
352
|
-
/**
|
|
353
|
-
* Gets collaboration type for fluid on core partition
|
|
354
|
-
*/
|
|
355
|
-
CoreLoopSharingCapability: SharingCapabilities;
|
|
356
|
-
/**
|
|
357
|
-
* Gets default share link scope for fluid on core partition
|
|
358
|
-
*/
|
|
359
|
-
CoreLoopDefaultSharingLinkScope: SharingScope;
|
|
360
|
-
/**
|
|
361
|
-
* Gets default share link role for fluid on core partition
|
|
362
|
-
*/
|
|
363
|
-
CoreLoopDefaultSharingLinkRole: number;
|
|
364
|
-
/**
|
|
365
|
-
* Gets collaboration type on core partition
|
|
366
|
-
*/
|
|
367
|
-
CoreSharingCapability: SharingCapabilities;
|
|
368
|
-
/**
|
|
369
|
-
* Gets request files link enabled on core partition
|
|
370
|
-
*/
|
|
371
|
-
CoreRequestFilesLinkEnabled: boolean;
|
|
372
|
-
/**
|
|
373
|
-
* Gets request files link expiration days on core partition
|
|
374
|
-
*/
|
|
375
|
-
CoreRequestFilesLinkExpirationInDays: number;
|
|
376
|
-
/**
|
|
377
|
-
* Gets a value to indicate whether to allow anonymous meeting participants to access whiteboards
|
|
378
|
-
*/
|
|
379
|
-
AllowAnonymousMeetingParticipantsToAccessWhiteboards: SharingState;
|
|
380
|
-
/**
|
|
381
|
-
* Gets address bar link permission
|
|
382
|
-
*/
|
|
383
|
-
AddressbarLinkPermission: number;
|
|
384
|
-
/**
|
|
385
|
-
* Gets a value to specify whether Auto news digest is enabled
|
|
386
|
-
*/
|
|
387
|
-
EnableAutoNewsDigest: boolean;
|
|
388
|
-
/**
|
|
389
|
-
* Gets customized external sharing service Url
|
|
390
|
-
*/
|
|
391
|
-
CustomizedExternalSharingServiceUrl: string;
|
|
392
|
-
/**
|
|
393
|
-
* Gets a value to specify whether AAD B2B integration is enabled
|
|
394
|
-
*/
|
|
395
|
-
EnableAzureADB2BIntegration: boolean;
|
|
396
|
-
/**
|
|
397
|
-
* Gets a value to specify whether Add To OneDrive is disabled
|
|
398
|
-
*/
|
|
399
|
-
DisableAddToOneDrive: boolean;
|
|
400
|
-
/**
|
|
401
|
-
* Gets a value to specify whether to include at a glance in the sharing emails
|
|
402
|
-
*/
|
|
403
|
-
IncludeAtAGlanceInShareEmails: boolean;
|
|
404
|
-
/**
|
|
405
|
-
* Get status of feature sync client restriction allowed
|
|
406
|
-
*/
|
|
407
|
-
IsUnmanagedSyncClientRestrictionFlightEnabled: boolean;
|
|
408
|
-
/**
|
|
409
|
-
* Get sync client restrictions
|
|
410
|
-
*/
|
|
411
|
-
IsUnmanagedSyncClientForTenantRestricted: boolean;
|
|
412
|
-
/**
|
|
413
|
-
* Get sync client trusted domain guids
|
|
414
|
-
*/
|
|
415
|
-
AllowedDomainListForSyncClient: string[];
|
|
416
|
-
/**
|
|
417
|
-
* Get whether Mac clients should be blocked from sync
|
|
418
|
-
*/
|
|
419
|
-
BlockMacSync: boolean;
|
|
420
|
-
/**
|
|
421
|
-
* Get sync client excluded file extensions
|
|
422
|
-
*/
|
|
423
|
-
ExcludedFileExtensionsForSyncClient: string[];
|
|
424
|
-
/**
|
|
425
|
-
* Gets whether to hide the sync button on OneDrive for Business sites
|
|
426
|
-
*/
|
|
427
|
-
HideSyncButtonOnODB: boolean;
|
|
428
|
-
/**
|
|
429
|
-
* Gets whether the sync button should use the Next-Generation Sync Client on OneDrive for Business sites
|
|
430
|
-
*/
|
|
431
|
-
ShowNGSCDialogForSyncOnODB: boolean;
|
|
432
|
-
/**
|
|
433
|
-
* Gets whether Nucleus should be disabled for List Sync
|
|
434
|
-
*/
|
|
435
|
-
DisableListSync: boolean;
|
|
436
|
-
/**
|
|
437
|
-
* Gets a value to enable or disable comment text contents in email
|
|
438
|
-
*/
|
|
439
|
-
AllowCommentsTextOnEmailEnabled: boolean;
|
|
440
|
-
/**
|
|
441
|
-
* Gets whether Onedrive creation for guest users is enabled in the tenancy
|
|
442
|
-
*/
|
|
443
|
-
OneDriveForGuestsEnabled: boolean;
|
|
444
|
-
/**
|
|
445
|
-
* IPAddressEnforcement for tenancy
|
|
446
|
-
*/
|
|
447
|
-
IPAddressEnforcement: boolean;
|
|
448
|
-
/**
|
|
449
|
-
* Gets the IPAddress range that is allowed to access the tenancy, CIDR range that looks like 10.12.30/4. Also note: IPAddressEnforcement needs to be true
|
|
450
|
-
*/
|
|
451
|
-
IPAddressAllowList: string;
|
|
452
|
-
/**
|
|
453
|
-
* Gets the WAC Token lifetime if tenant opted for IPAddressEnforcement
|
|
454
|
-
*/
|
|
455
|
-
IPAddressWACTokenLifetime: number;
|
|
456
|
-
/**
|
|
457
|
-
* Gets whether Hashed Proof Token IP binding is enabled
|
|
458
|
-
*/
|
|
459
|
-
ReduceTempTokenLifetimeEnabled: boolean;
|
|
460
|
-
/**
|
|
461
|
-
* Determines the grace period for Hashed Proof Tokens from an IP address that doesn't match the
|
|
462
|
-
* IP address in the token, when the IP policy is not enabled and IP Binding is enabled
|
|
463
|
-
*/
|
|
464
|
-
ReduceTempTokenLifetimeValue: number;
|
|
465
|
-
/**
|
|
466
|
-
* Gets whether EWS FindPeople with ABPs is enabled in PeoplePicker
|
|
467
|
-
*/
|
|
468
|
-
UseFindPeopleInPeoplePicker: boolean;
|
|
469
|
-
/**
|
|
470
|
-
* Gets conditional access policy type
|
|
471
|
-
*/
|
|
472
|
-
ConditionalAccessPolicy: SPOConditionalAccessPolicyType;
|
|
473
|
-
/**
|
|
474
|
-
* Gets the advanced setting of SPO conditional access policy
|
|
475
|
-
*/
|
|
476
|
-
AllowDownloadingNonWebViewableFiles: boolean;
|
|
477
|
-
/**
|
|
478
|
-
* Gets limited access file type
|
|
479
|
-
*/
|
|
480
|
-
LimitedAccessFileType: SPOLimitedAccessFileType;
|
|
481
|
-
/**
|
|
482
|
-
* Gets the advanced setting of SPO conditional access policy, A boolean value that specifies whether to allow editing in WAC
|
|
483
|
-
*/
|
|
484
|
-
AllowEditing: boolean;
|
|
485
|
-
/**
|
|
486
|
-
* Gets the setting of whether app-enforced restrictions apply to TOAA users
|
|
487
|
-
*/
|
|
488
|
-
ApplyAppEnforcedRestrictionsToAdHocRecipients: boolean;
|
|
489
|
-
/**
|
|
490
|
-
* Gets whether to show promoted file handlers
|
|
491
|
-
*/
|
|
492
|
-
EnablePromotedFileHandlers: boolean;
|
|
493
|
-
/**
|
|
494
|
-
* Gets whether 2013 workflows are configured and enabled for the tenant
|
|
495
|
-
*/
|
|
496
|
-
Workflows2013State: Workflows2013State;
|
|
497
|
-
/**
|
|
498
|
-
* Gets whether 2010 workflows are enabled for the tenant
|
|
499
|
-
*/
|
|
500
|
-
Workflow2010Disabled: boolean;
|
|
501
|
-
/**
|
|
502
|
-
* Gets whether new 2010 workflows can be created for the tenant
|
|
503
|
-
*/
|
|
504
|
-
StopNew2010Workflows: boolean;
|
|
505
|
-
/**
|
|
506
|
-
* Gets whether new 2013 workflows can be created for the tenant
|
|
507
|
-
*/
|
|
508
|
-
StopNew2013Workflows: boolean;
|
|
509
|
-
/**
|
|
510
|
-
* Gets whether back to classic link is disabled in Modern UX
|
|
511
|
-
*/
|
|
512
|
-
DisableBackToClassic: boolean;
|
|
513
|
-
/**
|
|
514
|
-
* Gets IBImplicitGroupBased value
|
|
515
|
-
*/
|
|
516
|
-
IBImplicitGroupBased: boolean;
|
|
517
|
-
/**
|
|
518
|
-
* Gets InformationBarriersSuspension value
|
|
519
|
-
*/
|
|
520
|
-
InformationBarriersSuspension: boolean;
|
|
521
|
-
/**
|
|
522
|
-
* Gets DefaultODBMode value
|
|
523
|
-
*/
|
|
524
|
-
DefaultODBMode: string;
|
|
525
|
-
/**
|
|
526
|
-
* Gets a value to specify BlockUserInfoVisibilityInOneDrive
|
|
527
|
-
*/
|
|
528
|
-
BlockUserInfoVisibilityInOneDrive: TenantBrowseUserInfoPolicyValue;
|
|
529
|
-
/**
|
|
530
|
-
* Gets a value to specify BlockUserInfoVisibilityInSharePoint
|
|
531
|
-
*/
|
|
532
|
-
BlockUserInfoVisibilityInSharePoint: TenantBrowseUserInfoPolicyValue;
|
|
533
|
-
/**
|
|
534
|
-
* Gets AllowOverrideForBlockUserInfoVisibility value
|
|
535
|
-
*/
|
|
536
|
-
AllowOverrideForBlockUserInfoVisibility: boolean;
|
|
537
|
-
/**
|
|
538
|
-
* Indicates whether personal list creation is disabled or not on the tenant
|
|
539
|
-
*/
|
|
540
|
-
DisablePersonalListCreation: boolean;
|
|
541
|
-
/**
|
|
542
|
-
* Collection of modern list template ids which are disabled on the tenant
|
|
543
|
-
*/
|
|
544
|
-
DisabledModernListTemplateIds: string[];
|
|
545
|
-
/**
|
|
546
|
-
* Indicates whether activating spaces is disabled or not on the tenant
|
|
547
|
-
*/
|
|
548
|
-
DisableSpacesActivation: boolean;
|
|
549
|
-
/**
|
|
550
|
-
* Gets a value to specify whether the sync button on team sites and other ODBs is hidden.
|
|
551
|
-
* (Basically this hides the sync button on all document libraries except the ODB that the user owns.)
|
|
552
|
-
*/
|
|
553
|
-
HideSyncButtonOnDocLib: boolean;
|
|
554
|
-
/**
|
|
555
|
-
* Indicates whether Outlook PST version trimming is disabled or not on the tenant
|
|
556
|
-
*/
|
|
557
|
-
DisableOutlookPSTVersionTrimming: boolean;
|
|
558
|
-
/**
|
|
559
|
-
* Gets MediaTranscription value
|
|
560
|
-
*/
|
|
561
|
-
MediaTranscription: MediaTranscriptionPolicyType;
|
|
562
|
-
/**
|
|
563
|
-
* Gets the value of the setting which enables users to view files in Explorer
|
|
564
|
-
*/
|
|
565
|
-
ViewInFileExplorerEnabled: boolean;
|
|
566
|
-
/**
|
|
567
|
-
* Gets whether Open In Desktop should be enabled
|
|
568
|
-
*/
|
|
569
|
-
ShowOpenInDesktopOptionForSyncedFiles: boolean;
|
|
570
|
-
/**
|
|
571
|
-
* Gets a value to handle showing group suggestions for IB in PeoplePicker
|
|
572
|
-
*/
|
|
573
|
-
ShowPeoplePickerGroupSuggestionsForIB: boolean;
|
|
574
|
-
}
|
|
575
|
-
export declare enum SharingCapabilities {
|
|
576
|
-
/**
|
|
577
|
-
* External user sharing (share by email) and guest link sharing are both disabled for all site collections
|
|
578
|
-
* in the tenancy. No new external user invitations or sharing links can be created, and any content previously
|
|
579
|
-
* shared becomes inaccessible to external users.
|
|
580
|
-
*/
|
|
581
|
-
Disabled = 0,
|
|
582
|
-
/**
|
|
583
|
-
* External user sharing is enabled for the tenancy, but guest link sharing is disabled. Each individual
|
|
584
|
-
* site collection's sharing properties govern whether the site collection has sharing disabled or allows
|
|
585
|
-
* external user sharing, but a site collection cannot enable guest link sharing.
|
|
586
|
-
*/
|
|
587
|
-
ExternalUserSharingOnly = 1,
|
|
588
|
-
/**
|
|
589
|
-
* External user sharing and guest link sharing are enabled for the tenancy. Each individual site
|
|
590
|
-
* collection's sharing properties govern whether the site collection has sharing disabled, allows external user
|
|
591
|
-
* sharing only, or allows both external user sharing and guest link sharing.
|
|
592
|
-
*/
|
|
593
|
-
ExternalUserAndGuestSharing = 2,
|
|
594
|
-
/**
|
|
595
|
-
* External user sharing and guest link sharing are both disabled for the tenancy, but AllowGuestUserSignIn is enabled.
|
|
596
|
-
* Each individual site collection's sharing properties govern whether the site collection has sharing disabled or allows
|
|
597
|
-
* existing external user signing in, but a site collection cannot enable guest link sharing and cannot share with new external users.
|
|
598
|
-
*/
|
|
599
|
-
ExistingExternalUserSharingOnly = 3
|
|
600
|
-
}
|
|
601
|
-
export interface ISiteInfoForSitePicker {
|
|
602
|
-
SiteId: string;
|
|
603
|
-
Url: string;
|
|
604
|
-
SiteName: string;
|
|
605
|
-
Error: string;
|
|
606
|
-
}
|
|
607
|
-
export declare enum ImageTaggingChoice {
|
|
608
|
-
Disabled = 1,
|
|
609
|
-
Basic = 2,
|
|
610
|
-
Enhanced = 3
|
|
611
|
-
}
|
|
612
|
-
export interface ISPOrgAssets {
|
|
613
|
-
WebId: string;
|
|
614
|
-
SiteId: string;
|
|
615
|
-
Url: IResourcePath;
|
|
616
|
-
Domain: IResourcePath;
|
|
617
|
-
}
|
|
618
|
-
export declare enum AzureSubscriptionState {
|
|
619
|
-
Unknown = 0,
|
|
620
|
-
Active = 1,
|
|
621
|
-
Deleted = 2,
|
|
622
|
-
Disabled = 3,
|
|
623
|
-
Expired = 4,
|
|
624
|
-
PastDue = 5,
|
|
625
|
-
Warned = 6
|
|
626
|
-
}
|
|
627
|
-
export interface ISyntexBillingContext {
|
|
628
|
-
AzureResourceId: string;
|
|
629
|
-
AzureSubscriptionState: AzureSubscriptionState;
|
|
630
|
-
Location: string;
|
|
631
|
-
Updated: Date;
|
|
632
|
-
}
|
|
633
|
-
export declare enum SPResilienceModeType {
|
|
634
|
-
DefaultAAD = 0,
|
|
635
|
-
Enabled = 1,
|
|
636
|
-
Disabled = 2
|
|
637
|
-
}
|
|
638
|
-
export declare enum SharingDomainRestrictionModes {
|
|
639
|
-
None = 0,
|
|
640
|
-
AllowList = 1,
|
|
641
|
-
BlockList = 2
|
|
642
|
-
}
|
|
643
|
-
export declare enum SharingLinkType {
|
|
644
|
-
View = 0,
|
|
645
|
-
Edit = 1,
|
|
646
|
-
Review = 2,
|
|
647
|
-
Embed = 3,
|
|
648
|
-
BlocksDownload = 4,
|
|
649
|
-
CreateOnly = 5,
|
|
650
|
-
AddressBar = 6,
|
|
651
|
-
AdminDefault = 7,
|
|
652
|
-
Unknown = 8
|
|
653
|
-
}
|
|
654
|
-
export declare enum AnonymousLinkType {
|
|
655
|
-
None = 0,
|
|
656
|
-
View = 1,
|
|
657
|
-
Edit = 2
|
|
658
|
-
}
|
|
659
|
-
export declare enum SharingState {
|
|
660
|
-
Unspecified = 0,
|
|
661
|
-
On = 1,
|
|
662
|
-
Off = 2
|
|
663
|
-
}
|
|
664
|
-
export declare enum BlockDownloadLinksFileTypes {
|
|
665
|
-
WebPreviewableFiles = 1,
|
|
666
|
-
ServerRenderedFilesOnly = 2
|
|
667
|
-
}
|
|
668
|
-
export declare enum SharingScope {
|
|
669
|
-
Anyone = 0,
|
|
670
|
-
Organization = 1,
|
|
671
|
-
SpecificPeople = 2
|
|
672
|
-
}
|
|
673
|
-
export declare enum SPOConditionalAccessPolicyType {
|
|
674
|
-
AllowFullAccess = 0,
|
|
675
|
-
AllowLimitedAccess = 1,
|
|
676
|
-
BlockAccess = 2,
|
|
677
|
-
AuthenticationContext = 3
|
|
678
|
-
}
|
|
679
|
-
export declare enum SPOLimitedAccessFileType {
|
|
680
|
-
OfficeOnlineFilesOnly = 0,
|
|
681
|
-
WebPreviewableFiles = 1,
|
|
682
|
-
OtherFiles = 2
|
|
683
|
-
}
|
|
684
|
-
export declare enum Workflows2013State {
|
|
685
|
-
Disabled = 0,
|
|
686
|
-
Configuring = 1,
|
|
687
|
-
Enabled = 2
|
|
688
|
-
}
|
|
689
|
-
export declare enum TenantBrowseUserInfoPolicyValue {
|
|
690
|
-
ApplyToNoUsers = 0,
|
|
691
|
-
ApplyToGuestAndExternalUsers = 1,
|
|
692
|
-
ApplyToInternalUsers = 2,
|
|
693
|
-
ApplyToAllUsers = 3
|
|
694
|
-
}
|
|
695
|
-
export declare enum MediaTranscriptionPolicyType {
|
|
696
|
-
Enabled = 0,
|
|
697
|
-
Disabled = 1
|
|
698
|
-
}
|
|
699
|
-
export declare enum SPOTenantCdnType {
|
|
700
|
-
Public = 0,
|
|
701
|
-
Private = 1
|
|
702
|
-
}
|
|
703
|
-
export declare enum SPOrgAssetType {
|
|
704
|
-
Undefined = 0,
|
|
705
|
-
ImageDocumentLibrary = 1,
|
|
706
|
-
OfficeTemplateLibrary = 2,
|
|
707
|
-
OfficeFontLibrary = 4
|
|
708
|
-
}
|
|
709
|
-
export declare enum SPOTenantCdnPolicyType {
|
|
710
|
-
IncludeFileExtensions = 0,
|
|
711
|
-
ExcludeRestrictedSiteClassifications = 1,
|
|
712
|
-
ExcludeIfNoScriptDisabled = 2,
|
|
713
|
-
ExcludeRestrictedSiteClassificationsFileExtensions = 3
|
|
714
|
-
}
|
|
715
|
-
export interface IThemeProperties {
|
|
716
|
-
Name: string;
|
|
717
|
-
Palette: Record<string, string>;
|
|
718
|
-
IsInverted: boolean;
|
|
719
|
-
}
|
|
720
|
-
export interface IGetExternalUsersResults {
|
|
721
|
-
UserCollectionPosition: number;
|
|
722
|
-
TotalUserCount: number;
|
|
723
|
-
ExternalUserCollection: IExternalUser[];
|
|
724
|
-
}
|
|
725
|
-
export interface IExternalUser {
|
|
726
|
-
AcceptedAs: string;
|
|
727
|
-
DisplayName: string;
|
|
728
|
-
InvitedAs: string;
|
|
729
|
-
InvitedBy: string | null;
|
|
730
|
-
IsCrossTenant: boolean;
|
|
731
|
-
LoginName: string;
|
|
732
|
-
UniqueId: string;
|
|
733
|
-
UserId: number;
|
|
734
|
-
WhenCreated: string;
|
|
735
|
-
}
|
|
736
|
-
export declare enum SortOrder {
|
|
737
|
-
Ascending = 0,
|
|
738
|
-
Descending = 1
|
|
739
|
-
}
|
|
740
|
-
export interface IRemoveExternalUsersResults {
|
|
741
|
-
RemoveFailed: string[];
|
|
742
|
-
RemoveSucceeded: string[];
|
|
743
|
-
}
|
|
744
|
-
export declare enum ImportProfilePropertiesUserIdTypes {
|
|
745
|
-
Email = 0,
|
|
746
|
-
CloudId = 1,
|
|
747
|
-
PrincipalName = 2
|
|
748
|
-
}
|
|
749
|
-
export interface IImportProfilePropertiesJobInfo {
|
|
750
|
-
JobId: string;
|
|
751
|
-
State: ImportProfilePropertiesJobState;
|
|
752
|
-
SourceUri: string;
|
|
753
|
-
ImportProfilePropertiesJobError: any;
|
|
754
|
-
ErrorMessage: string;
|
|
755
|
-
LogFolderUri: string;
|
|
756
|
-
}
|
|
757
|
-
export declare enum ImportProfilePropertiesJobState {
|
|
758
|
-
Unknown = 0,
|
|
759
|
-
Submitted = 1,
|
|
760
|
-
Processing = 2,
|
|
761
|
-
Queued = 3,
|
|
762
|
-
Succeeded = 4,
|
|
763
|
-
Error = 5
|
|
764
|
-
}
|
|
765
|
-
export interface ISPOUserSessionRevocationResult {
|
|
766
|
-
State: SPOUserSessionRevocationState;
|
|
767
|
-
}
|
|
768
|
-
export declare enum SPOUserSessionRevocationState {
|
|
769
|
-
FeatureDisabled = 0,
|
|
770
|
-
UserNotFound = 1,
|
|
771
|
-
Failure = 2,
|
|
772
|
-
NonInstantaneousSuccess = 3,
|
|
773
|
-
InstantaneousSuccess = 4
|
|
774
|
-
}
|
|
775
|
-
export interface IGroupCreationParams {
|
|
776
|
-
Description: string;
|
|
777
|
-
Owners: string[];
|
|
778
|
-
CreationOptions: string[];
|
|
779
|
-
Classification: string;
|
|
780
|
-
}
|
|
781
|
-
export interface ITenantSitePropertiesInfo {
|
|
782
|
-
/**
|
|
783
|
-
* The Url of the site
|
|
784
|
-
*/
|
|
785
|
-
Url: string;
|
|
786
|
-
/**
|
|
787
|
-
* The status of the site
|
|
788
|
-
*/
|
|
789
|
-
Status: string;
|
|
790
|
-
/**
|
|
791
|
-
* The TimeZone ID
|
|
792
|
-
*/
|
|
793
|
-
TimeZoneId: number;
|
|
794
|
-
/**
|
|
795
|
-
* The last time content was modified on the site
|
|
796
|
-
*/
|
|
797
|
-
LastContentModifiedDate: string;
|
|
798
|
-
/**
|
|
799
|
-
* A description of the lock issue
|
|
800
|
-
*/
|
|
801
|
-
LockIssue: string;
|
|
802
|
-
/**
|
|
803
|
-
* The average usuage of resources by user code
|
|
804
|
-
*/
|
|
805
|
-
AverageResourceUsage: number;
|
|
806
|
-
/**
|
|
807
|
-
* The current usuage of resources by user code
|
|
808
|
-
*/
|
|
809
|
-
CurrentResourceUsage: number;
|
|
810
|
-
/**
|
|
811
|
-
* The current usage of storage for the site
|
|
812
|
-
*/
|
|
813
|
-
StorageUsage: number;
|
|
814
|
-
/**
|
|
815
|
-
* The number of SPWebs in the site
|
|
816
|
-
*/
|
|
817
|
-
WebsCount: number;
|
|
818
|
-
/**
|
|
819
|
-
* The compatibility leve of this site
|
|
820
|
-
*/
|
|
821
|
-
CompatibilityLevel: number;
|
|
822
|
-
/**
|
|
823
|
-
* The email address of the site owner
|
|
824
|
-
*/
|
|
825
|
-
OwnerEmail: string;
|
|
826
|
-
/**
|
|
827
|
-
* The HubSiteId of the HubSite this site is associated with
|
|
828
|
-
*/
|
|
829
|
-
HubSiteId: string;
|
|
830
|
-
/**
|
|
831
|
-
* Whether or not this site is a HubSite
|
|
832
|
-
*/
|
|
833
|
-
IsHubSite: boolean;
|
|
834
|
-
/**
|
|
835
|
-
* The GroupId of the group this site is associated with
|
|
836
|
-
*/
|
|
837
|
-
RelatedGroupId: string;
|
|
838
|
-
/**
|
|
839
|
-
* The GroupId of the site
|
|
840
|
-
*/
|
|
841
|
-
GroupId: string;
|
|
842
|
-
/**
|
|
843
|
-
* Site's description
|
|
844
|
-
*/
|
|
845
|
-
Description: string;
|
|
846
|
-
/**
|
|
847
|
-
* Gets if the site is connected to a team in Microsoft Teams
|
|
848
|
-
*/
|
|
849
|
-
IsTeamsConnected: boolean;
|
|
850
|
-
/**
|
|
851
|
-
* Gets if the site is connected to a team channel in Microsoft Teams
|
|
852
|
-
*/
|
|
853
|
-
IsTeamsChannelConnected: boolean;
|
|
854
|
-
/**
|
|
855
|
-
* When the site is connected to a team channel in Microsoft Teams, gets the type of channel the site is connected to
|
|
856
|
-
*/
|
|
857
|
-
TeamsChannelType: TeamsChannelTypeValue;
|
|
858
|
-
/**
|
|
859
|
-
* The Storage Quota
|
|
860
|
-
*/
|
|
861
|
-
StorageMaximumLevel: number;
|
|
862
|
-
/**
|
|
863
|
-
* The warning level for storage usage
|
|
864
|
-
*/
|
|
865
|
-
StorageWarningLevel: number;
|
|
866
|
-
/**
|
|
867
|
-
* The storage quota type for the site
|
|
868
|
-
*/
|
|
869
|
-
StorageQuotaType: string;
|
|
870
|
-
/**
|
|
871
|
-
* Title Translations for the site
|
|
872
|
-
*/
|
|
873
|
-
TitleTranslations: string[];
|
|
874
|
-
/**
|
|
875
|
-
* The maximum amount of machine resources that can be used by user code
|
|
876
|
-
*/
|
|
877
|
-
UserCodeMaximumLevel: number;
|
|
878
|
-
/**
|
|
879
|
-
* The amount of machine resources used by user code which triggers warning
|
|
880
|
-
*/
|
|
881
|
-
UserCodeWarningLevel: number;
|
|
882
|
-
/**
|
|
883
|
-
* The site's title
|
|
884
|
-
*/
|
|
885
|
-
Title: string;
|
|
886
|
-
/**
|
|
887
|
-
* Flag that indicates a site has Holds
|
|
888
|
-
*/
|
|
889
|
-
HasHolds: boolean;
|
|
890
|
-
/**
|
|
891
|
-
* The decoded login name of the site owner
|
|
892
|
-
*/
|
|
893
|
-
Owner: string;
|
|
894
|
-
/**
|
|
895
|
-
* The encoded login name of the site owner Example: i:0#.f|membership|admin@thing.domain.net
|
|
896
|
-
*/
|
|
897
|
-
OwnerLoginName: string;
|
|
898
|
-
/**
|
|
899
|
-
* The login name of the group owner
|
|
900
|
-
*/
|
|
901
|
-
GroupOwnerLoginName: string;
|
|
902
|
-
/**
|
|
903
|
-
* Whether group owner is site admin
|
|
904
|
-
*/
|
|
905
|
-
IsGroupOwnerSiteAdmin: boolean;
|
|
906
|
-
/**
|
|
907
|
-
* Whether update secondary admin during setting primary admin
|
|
908
|
-
*/
|
|
909
|
-
SetOwnerWithoutUpdatingSecondaryAdmin: boolean;
|
|
910
|
-
/**
|
|
911
|
-
* The site owner name
|
|
912
|
-
*/
|
|
913
|
-
OwnerName: string;
|
|
914
|
-
/**
|
|
915
|
-
* The site's web template name
|
|
916
|
-
*/
|
|
917
|
-
Template: string;
|
|
918
|
-
/**
|
|
919
|
-
* The Locale ID of the site
|
|
920
|
-
*/
|
|
921
|
-
Lcid: number;
|
|
922
|
-
/**
|
|
923
|
-
* Flag that indicates is a site supports self-service upgrade
|
|
924
|
-
*/
|
|
925
|
-
AllowSelfServiceUpgrade: boolean;
|
|
926
|
-
/**
|
|
927
|
-
* A string representing the lock state of the site
|
|
928
|
-
*/
|
|
929
|
-
LockState: string;
|
|
930
|
-
/**
|
|
931
|
-
* Determines whether the site has AddAndCustomizePages denied
|
|
932
|
-
*/
|
|
933
|
-
DenyAddAndCustomizePages: DenyAddAndCustomizePagesStatus;
|
|
934
|
-
/**
|
|
935
|
-
* Determines whether the site is resticted to a specific geo location
|
|
936
|
-
*/
|
|
937
|
-
RestrictedToRegion: RestrictedToRegion;
|
|
938
|
-
/**
|
|
939
|
-
* Determines whether PWA is enabled for the site
|
|
940
|
-
*/
|
|
941
|
-
PWAEnabled: PWAEnabledStatus;
|
|
942
|
-
/**
|
|
943
|
-
*
|
|
944
|
-
*/
|
|
945
|
-
SharingCapability: SharingCapabilities;
|
|
946
|
-
/**
|
|
947
|
-
*
|
|
948
|
-
*/
|
|
949
|
-
SiteDefinedSharingCapability: SharingCapabilities;
|
|
950
|
-
/**
|
|
951
|
-
* Indicates whether company wide sharing links are disabled in all the webs of this site
|
|
952
|
-
*/
|
|
953
|
-
DisableCompanyWideSharingLinks: CompanyWideSharingLinksPolicy;
|
|
954
|
-
/**
|
|
955
|
-
* Flag that controls allowing members to search guest users in the directory
|
|
956
|
-
*/
|
|
957
|
-
ShowPeoplePickerSuggestionsForGuestUsers: boolean;
|
|
958
|
-
/**
|
|
959
|
-
* Indicates what this site's domain restriction mode is
|
|
960
|
-
*/
|
|
961
|
-
SharingDomainRestrictionMode: SharingDomainRestrictionModes;
|
|
962
|
-
/**
|
|
963
|
-
* A list of allowed domain names for this site
|
|
964
|
-
*/
|
|
965
|
-
SharingAllowedDomainList: string;
|
|
966
|
-
/**
|
|
967
|
-
* A list of blocked domain names for this site
|
|
968
|
-
*/
|
|
969
|
-
SharingBlockedDomainList: string;
|
|
970
|
-
/**
|
|
971
|
-
* Flag that controls access from devices that aren't compliant or joined to a domain to have limited access (web-only, without the Download, Print, and Sync commands)
|
|
972
|
-
*/
|
|
973
|
-
ConditionalAccessPolicy: SPOConditionalAccessPolicyType;
|
|
974
|
-
/**
|
|
975
|
-
* Indicates whether end users can download non-viewable files (e.g. zip)
|
|
976
|
-
*/
|
|
977
|
-
AllowDownloadingNonWebViewableFiles: boolean;
|
|
978
|
-
/**
|
|
979
|
-
* Specifies what files can be viewed when ConditionalAccessPolicy is set to AllowLimitedAccess
|
|
980
|
-
*/
|
|
981
|
-
LimitedAccessFileType: SPOLimitedAccessFileType;
|
|
982
|
-
/**
|
|
983
|
-
* Indicates whether WAC files should be open in Edit mode.
|
|
984
|
-
*/
|
|
985
|
-
AllowEditing: boolean;
|
|
986
|
-
/**
|
|
987
|
-
* The Guid of an Information Protection label
|
|
988
|
-
*/
|
|
989
|
-
SensitivityLabel: string;
|
|
990
|
-
/**
|
|
991
|
-
* The Guid of an Information Protection label (2)
|
|
992
|
-
*/
|
|
993
|
-
SensitivityLabel2: string;
|
|
994
|
-
/**
|
|
995
|
-
* Indicates whether app views are disabled in all the webs of this site
|
|
996
|
-
*/
|
|
997
|
-
DisableAppViews: AppViewsPolicy;
|
|
998
|
-
/**
|
|
999
|
-
* Indicates whether flows are disabled in all the webs of this site
|
|
1000
|
-
*/
|
|
1001
|
-
DisableFlows: FlowsPolicy;
|
|
1002
|
-
/**
|
|
1003
|
-
* Gets the authentication context strength for this site for (deprecated, use AuthenticationContextName)
|
|
1004
|
-
*/
|
|
1005
|
-
AuthContextStrength: string;
|
|
1006
|
-
/**
|
|
1007
|
-
* Gets the authentication context for this site for all the webs
|
|
1008
|
-
*/
|
|
1009
|
-
AuthenticationContextName: string;
|
|
1010
|
-
/**
|
|
1011
|
-
* Whether comments on site pages are disabled or not
|
|
1012
|
-
*/
|
|
1013
|
-
CommentsOnSitePagesDisabled: boolean;
|
|
1014
|
-
/**
|
|
1015
|
-
* Whether social bar on site pages is enabled or not
|
|
1016
|
-
*/
|
|
1017
|
-
SocialBarOnSitePagesDisabled: boolean;
|
|
1018
|
-
/**
|
|
1019
|
-
* The default link type for this site
|
|
1020
|
-
*/
|
|
1021
|
-
DefaultSharingLinkType: SharingLinkType;
|
|
1022
|
-
/**
|
|
1023
|
-
* The default link permission for this site
|
|
1024
|
-
*/
|
|
1025
|
-
DefaultLinkPermission: SharingPermissionType;
|
|
1026
|
-
/**
|
|
1027
|
-
*
|
|
1028
|
-
*/
|
|
1029
|
-
BlockDownloadLinksFileType: BlockDownloadLinksFileTypes;
|
|
1030
|
-
/**
|
|
1031
|
-
*
|
|
1032
|
-
*/
|
|
1033
|
-
OverrideBlockUserInfoVisibility: SiteUserInfoVisibilityPolicyValue;
|
|
1034
|
-
/**
|
|
1035
|
-
* The default link to existing access for this site
|
|
1036
|
-
*/
|
|
1037
|
-
DefaultLinkToExistingAccess: boolean;
|
|
1038
|
-
/**
|
|
1039
|
-
* This is to reset default link to existing access for this site. After resetting, the value will be default (false) or respect the higher level value
|
|
1040
|
-
*/
|
|
1041
|
-
DefaultLinkToExistingAccessReset: boolean;
|
|
1042
|
-
/**
|
|
1043
|
-
*
|
|
1044
|
-
*/
|
|
1045
|
-
AnonymousLinkExpirationInDays: number;
|
|
1046
|
-
/**
|
|
1047
|
-
*
|
|
1048
|
-
*/
|
|
1049
|
-
OverrideTenantAnonymousLinkExpirationPolicy: boolean;
|
|
1050
|
-
/**
|
|
1051
|
-
*
|
|
1052
|
-
*/
|
|
1053
|
-
ExternalUserExpirationInDays: number;
|
|
1054
|
-
/**
|
|
1055
|
-
*
|
|
1056
|
-
*/
|
|
1057
|
-
OverrideTenantExternalUserExpirationPolicy: boolean;
|
|
1058
|
-
/**
|
|
1059
|
-
*
|
|
1060
|
-
*/
|
|
1061
|
-
SharingLockDownEnabled: boolean;
|
|
1062
|
-
/**
|
|
1063
|
-
*
|
|
1064
|
-
*/
|
|
1065
|
-
SharingLockDownCanBeCleared: boolean;
|
|
1066
|
-
/**
|
|
1067
|
-
* The collaboration type for fluid
|
|
1068
|
-
*/
|
|
1069
|
-
LoopSharingCapability: SharingCapabilities;
|
|
1070
|
-
/**
|
|
1071
|
-
* Boolean whether collaboration type for fluid can superseed that on partition level
|
|
1072
|
-
*/
|
|
1073
|
-
LoopOverrideSharingCapability: boolean;
|
|
1074
|
-
/**
|
|
1075
|
-
* Default share link scope for fluid
|
|
1076
|
-
*/
|
|
1077
|
-
LoopDefaultSharingLinkScope: boolean;
|
|
1078
|
-
/**
|
|
1079
|
-
* Default share link role for fluid
|
|
1080
|
-
*/
|
|
1081
|
-
LoopDefaultSharingLinkRole: number;
|
|
1082
|
-
/**
|
|
1083
|
-
* Gets request files link enabled
|
|
1084
|
-
*/
|
|
1085
|
-
RequestFilesLinkEnabled: boolean;
|
|
1086
|
-
/**
|
|
1087
|
-
* Gets request files link expiration days
|
|
1088
|
-
*/
|
|
1089
|
-
RequestFilesLinkExpirationInDays: number;
|
|
1090
|
-
/**
|
|
1091
|
-
* Gets the IB segment GUIDs
|
|
1092
|
-
*/
|
|
1093
|
-
IBSegments: string[];
|
|
1094
|
-
/**
|
|
1095
|
-
* IBMode
|
|
1096
|
-
*/
|
|
1097
|
-
IBMode: string;
|
|
1098
|
-
/**
|
|
1099
|
-
* Gets the media transcription policy
|
|
1100
|
-
*/
|
|
1101
|
-
MediaTranscription: MediaTranscriptionPolicyType;
|
|
1102
|
-
/**
|
|
1103
|
-
* Gets the Block download policy flag
|
|
1104
|
-
*/
|
|
1105
|
-
BlockDownloadPolicy: boolean;
|
|
1106
|
-
/**
|
|
1107
|
-
* Gets the Block download policy enforced Microsoft365 group GUIDs
|
|
1108
|
-
*/
|
|
1109
|
-
BlockDownloadMicrosoft365GroupIds: string[];
|
|
1110
|
-
/**
|
|
1111
|
-
* Gets the Microsoft365 group GUIDs that are excluded from Block download policy
|
|
1112
|
-
*/
|
|
1113
|
-
ExcludedBlockDownloadGroupIds: string[];
|
|
1114
|
-
/**
|
|
1115
|
-
* Gets the Read only access policy flag
|
|
1116
|
-
*/
|
|
1117
|
-
ReadOnlyAccessPolicy: boolean;
|
|
1118
|
-
/**
|
|
1119
|
-
* Gets the Read only access for unmanaged devices policy flag
|
|
1120
|
-
*/
|
|
1121
|
-
ReadOnlyForUnmanagedDevices: boolean;
|
|
1122
|
-
}
|
|
1123
|
-
export declare enum SpoSiteLockState {
|
|
1124
|
-
Unlock = 0,
|
|
1125
|
-
NoAdditions = 1,
|
|
1126
|
-
ReadOnly = 2,
|
|
1127
|
-
NoAccess = 3
|
|
1128
|
-
}
|
|
1129
|
-
export declare enum TeamsChannelTypeValue {
|
|
1130
|
-
None = 0,
|
|
1131
|
-
PrivateChannel = 1,
|
|
1132
|
-
SharedChannel = 2,
|
|
1133
|
-
StandardChannel = 3
|
|
1134
|
-
}
|
|
1135
|
-
export declare enum DenyAddAndCustomizePagesStatus {
|
|
1136
|
-
Unknown = 0,
|
|
1137
|
-
Disabled = 1,
|
|
1138
|
-
Enabled = 2
|
|
1139
|
-
}
|
|
1140
|
-
export declare enum RestrictedToRegion {
|
|
1141
|
-
NoRestriction = 0,
|
|
1142
|
-
BlockMoveOnly = 1,
|
|
1143
|
-
BlockFull = 2,
|
|
1144
|
-
Unknown = 3
|
|
1145
|
-
}
|
|
1146
|
-
export declare enum PWAEnabledStatus {
|
|
1147
|
-
Unknown = 0,
|
|
1148
|
-
Disabled = 1,
|
|
1149
|
-
Enabled = 2
|
|
1150
|
-
}
|
|
1151
|
-
export declare enum CompanyWideSharingLinksPolicy {
|
|
1152
|
-
Unknown = 0,
|
|
1153
|
-
Disabled = 1,
|
|
1154
|
-
NotDisabled = 2
|
|
1155
|
-
}
|
|
1156
|
-
export declare enum AppViewsPolicy {
|
|
1157
|
-
Unknown = 0,
|
|
1158
|
-
Disabled = 1,
|
|
1159
|
-
NotDisabled = 2
|
|
1160
|
-
}
|
|
1161
|
-
export declare enum FlowsPolicy {
|
|
1162
|
-
Unknown = 0,
|
|
1163
|
-
Disabled = 1,
|
|
1164
|
-
NotDisabled = 2
|
|
1165
|
-
}
|
|
1166
|
-
export declare enum SharingPermissionType {
|
|
1167
|
-
None = 0,
|
|
1168
|
-
View = 1,
|
|
1169
|
-
Edit = 2
|
|
1170
|
-
}
|
|
1171
|
-
export declare enum SiteUserInfoVisibilityPolicyValue {
|
|
1172
|
-
OrganizationDefault = 0,
|
|
1173
|
-
ApplyToNoUsers = 1,
|
|
1174
|
-
ApplyToGuestAndExternalUsers = 2,
|
|
1175
|
-
ApplyToInternalUsers = 3,
|
|
1176
|
-
ApplyToAllUsers = 4
|
|
1177
|
-
}
|
|
1178
|
-
export interface ITenantInfo {
|
|
1179
|
-
/**
|
|
1180
|
-
* Storage quota that is available for all sites in the tenant
|
|
1181
|
-
*/
|
|
1182
|
-
StorageQuota: number;
|
|
1183
|
-
/**
|
|
1184
|
-
* Storage quota that is allocated for all sites in the tenant
|
|
1185
|
-
*/
|
|
1186
|
-
StorageQuotaAllocated: number;
|
|
1187
|
-
/**
|
|
1188
|
-
* The resource quota for the tenant
|
|
1189
|
-
*/
|
|
1190
|
-
ResourceQuota: number;
|
|
1191
|
-
/**
|
|
1192
|
-
* The resource quota allocated to all sites in the tenant
|
|
1193
|
-
*/
|
|
1194
|
-
ResourceQuotaAllocated: number;
|
|
1195
|
-
/**
|
|
1196
|
-
* Determines which compatibility range is available for new
|
|
1197
|
-
* site collections.
|
|
1198
|
-
*/
|
|
1199
|
-
CompatibilityRange: string;
|
|
1200
|
-
/**
|
|
1201
|
-
* When a site in the tenancy is locked it is redirected to this Url.
|
|
1202
|
-
*/
|
|
1203
|
-
NoAccessRedirectUrl: string;
|
|
1204
|
-
/**
|
|
1205
|
-
* The tenant's root site url
|
|
1206
|
-
*/
|
|
1207
|
-
RootSiteUrl: string;
|
|
1208
|
-
/**
|
|
1209
|
-
* Get status of feature sync client restriction allowed
|
|
1210
|
-
*/
|
|
1211
|
-
IsUnmanagedSyncClientRestrictionFlightEnabled: boolean;
|
|
1212
|
-
/**
|
|
1213
|
-
* Get/Set sync client restrictions
|
|
1214
|
-
*/
|
|
1215
|
-
IsUnmanagedSyncClientForTenantRestricted: boolean;
|
|
1216
|
-
/**
|
|
1217
|
-
* Get/Set sync client trusted domain guids
|
|
1218
|
-
*/
|
|
1219
|
-
AllowedDomainListForSyncClient: string[];
|
|
1220
|
-
/**
|
|
1221
|
-
* Get/Set whether Mac clients should be blocked from sync
|
|
1222
|
-
*/
|
|
1223
|
-
BlockMacSync: boolean;
|
|
1224
|
-
/**
|
|
1225
|
-
* Get/Set whether to hide the sync button on OneDrive for Business sites
|
|
1226
|
-
*/
|
|
1227
|
-
HideSyncButtonOnODB: boolean;
|
|
1228
|
-
/**
|
|
1229
|
-
* Get/Set whether the sync button should use the Next-Generation Sync Client on OneDrive for Business sites
|
|
1230
|
-
*/
|
|
1231
|
-
ShowNGSCDialogForSyncOnODB: boolean;
|
|
1232
|
-
/**
|
|
1233
|
-
* Get/Set whether Nucleus Sync should be disabled for Lists
|
|
1234
|
-
*/
|
|
1235
|
-
DisableListSync: boolean;
|
|
1236
|
-
/**
|
|
1237
|
-
* Get/Set whether Groove clients should be blocked
|
|
1238
|
-
*/
|
|
1239
|
-
OptOutOfGrooveBlock: boolean;
|
|
1240
|
-
/**
|
|
1241
|
-
* Get/Set whether Groove clients should be soft blocked
|
|
1242
|
-
*/
|
|
1243
|
-
OptOutOfGrooveSoftBlock: boolean;
|
|
1244
|
-
/**
|
|
1245
|
-
* Get/Set excluded file extensions for sync client
|
|
1246
|
-
*/
|
|
1247
|
-
ExcludedFileExtensionsForSyncClient: string[];
|
|
1248
|
-
/**
|
|
1249
|
-
* Gets or sets a value to specify whether Public CDN feature is enabled or disabled for the tenant.
|
|
1250
|
-
*/
|
|
1251
|
-
PublicCdnEnabled: boolean;
|
|
1252
|
-
/**
|
|
1253
|
-
* Gets or sets a value to specify what file types can be exposed through Public CDN.
|
|
1254
|
-
*/
|
|
1255
|
-
PublicCdnAllowedFileTypes: string;
|
|
1256
|
-
/**
|
|
1257
|
-
* Gets a list of the Public CDN origins.
|
|
1258
|
-
*/
|
|
1259
|
-
PublicCdnOrigins: string[];
|
|
1260
|
-
/**
|
|
1261
|
-
* Get/Set whether Open In Desktop should be enabled
|
|
1262
|
-
*/
|
|
1263
|
-
ShowOpenInDesktopOptionForSyncedFiles: boolean;
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
*/
|
|
1267
|
-
IsMnAFlightEnabled: boolean;
|
|
1268
|
-
/**
|
|
1269
|
-
*
|
|
1270
|
-
*/
|
|
1271
|
-
PermissiveBrowserFileHandlingOverride: boolean;
|
|
1272
|
-
/**
|
|
1273
|
-
*
|
|
1274
|
-
*/
|
|
1275
|
-
DisallowInfectedFileDownload: boolean;
|
|
1276
|
-
/**
|
|
1277
|
-
* Disable sync client report problem dialog
|
|
1278
|
-
*/
|
|
1279
|
-
DisableReportProblemDialog: boolean;
|
|
1280
|
-
/**
|
|
1281
|
-
*
|
|
1282
|
-
*/
|
|
1283
|
-
SpecialCharactersStateInFileFolderNames: SpecialCharactersState;
|
|
1284
|
-
/**
|
|
1285
|
-
* Whether comments on site pages are disabled or not.
|
|
1286
|
-
*/
|
|
1287
|
-
CommentsOnSitePagesDisabled: boolean;
|
|
1288
|
-
/**
|
|
1289
|
-
* Whether comments on files are disabled or not.
|
|
1290
|
-
*/
|
|
1291
|
-
CommentsOnFilesDisabled: boolean;
|
|
1292
|
-
/**
|
|
1293
|
-
* Whether comments on list items are disabled or not.
|
|
1294
|
-
*/
|
|
1295
|
-
CommentsOnListItemsDisabled: boolean;
|
|
1296
|
-
/**
|
|
1297
|
-
* Whether viewers commenting on media items is disabled or not.
|
|
1298
|
-
*/
|
|
1299
|
-
ViewersCanCommentOnMediaDisabled: boolean;
|
|
1300
|
-
/**
|
|
1301
|
-
* Whether social bar on site pages is enabled or not.
|
|
1302
|
-
*/
|
|
1303
|
-
SocialBarOnSitePagesDisabled: boolean;
|
|
1304
|
-
/**
|
|
1305
|
-
* Gets or sets the MarkNewFilesSensitiveByDefault property
|
|
1306
|
-
*/
|
|
1307
|
-
MarkNewFilesSensitiveByDefault: SensitiveByDefaultState;
|
|
1308
|
-
/**
|
|
1309
|
-
* Gets or sets the BlockSendLabelMismatchEmail property
|
|
1310
|
-
*/
|
|
1311
|
-
BlockSendLabelMismatchEmail: boolean;
|
|
1312
|
-
/**
|
|
1313
|
-
* Gets or sets the LabelMismatchEmailHelpLink property
|
|
1314
|
-
*/
|
|
1315
|
-
LabelMismatchEmailHelpLink: string;
|
|
1316
|
-
/**
|
|
1317
|
-
*
|
|
1318
|
-
*/
|
|
1319
|
-
EnabledFlightAllowAADB2BSkipCheckingOTP: boolean;
|
|
1320
|
-
/**
|
|
1321
|
-
* Determines whether Hashed Proof Token IP Binding is enabled.
|
|
1322
|
-
*/
|
|
1323
|
-
ReduceTempTokenLifetimeEnabled: boolean;
|
|
1324
|
-
/**
|
|
1325
|
-
* Determines the grace period for Hashed Proof Tokens from an IP address that doesn't match the
|
|
1326
|
-
* IP address in the token, when the IP policy is not enabled and IP Binding is enabled.
|
|
1327
|
-
*/
|
|
1328
|
-
ReduceTempTokenLifetimeValue: number;
|
|
1329
|
-
/**
|
|
1330
|
-
* rest of props from selecting *
|
|
1331
|
-
*/
|
|
1332
|
-
AIBuilderDefaultPowerAppsEnvironment: string;
|
|
1333
|
-
AIBuilderEnabled: boolean;
|
|
1334
|
-
AIBuilderSiteListFileName: string;
|
|
1335
|
-
AllowAnonymousMeetingParticipantsToAccessWhiteboards: number;
|
|
1336
|
-
AllowCommentsTextOnEmailEnabled: boolean;
|
|
1337
|
-
AllowDownloadingNonWebViewableFiles: boolean;
|
|
1338
|
-
AllowEditing: boolean;
|
|
1339
|
-
AllowEveryoneExceptExternalUsersClaimInPrivateSite: boolean;
|
|
1340
|
-
AllowGuestUserShareToUsersNotInSiteCollection: boolean;
|
|
1341
|
-
AllowLimitedAccessOnUnmanagedDevices: boolean;
|
|
1342
|
-
AllowOverrideForBlockUserInfoVisibility: boolean;
|
|
1343
|
-
AllowSelectSGsInODBListInTenant: boolean | null;
|
|
1344
|
-
AnyoneLinkTrackUsers: boolean;
|
|
1345
|
-
ApplyAppEnforcedRestrictionsToAdHocRecipients: boolean;
|
|
1346
|
-
AuthContextResilienceMode: number;
|
|
1347
|
-
BccExternalSharingInvitations: boolean;
|
|
1348
|
-
BccExternalSharingInvitationsList: string[];
|
|
1349
|
-
BlockAccessOnUnmanagedDevices: boolean;
|
|
1350
|
-
BlockDownloadLinksFileType: number;
|
|
1351
|
-
BlockDownloadOfAllFilesForGuests: boolean;
|
|
1352
|
-
BlockDownloadOfAllFilesOnUnmanagedDevices: boolean;
|
|
1353
|
-
BlockDownloadOfViewableFilesForGuests: boolean;
|
|
1354
|
-
BlockDownloadOfViewableFilesOnUnmanagedDevices: boolean;
|
|
1355
|
-
BlockUserInfoVisibility: string;
|
|
1356
|
-
BlockUserInfoVisibilityInOneDrive: number;
|
|
1357
|
-
BlockUserInfoVisibilityInSharePoint: number;
|
|
1358
|
-
ConditionalAccessPolicy: number;
|
|
1359
|
-
ConditionalAccessPolicyErrorHelpLink: string;
|
|
1360
|
-
ContentTypeSyncSiteTemplatesList: string[];
|
|
1361
|
-
CoreLoopDefaultSharingLinkRole: number;
|
|
1362
|
-
CoreLoopDefaultSharingLinkScope: number;
|
|
1363
|
-
CoreLoopSharingCapability: number;
|
|
1364
|
-
CoreRequestFilesLinkEnabled: boolean;
|
|
1365
|
-
CoreRequestFilesLinkExpirationInDays: number;
|
|
1366
|
-
CoreSharingCapability: number;
|
|
1367
|
-
CustomizedExternalSharingServiceUrl: string;
|
|
1368
|
-
DefaultContentCenterSite: string;
|
|
1369
|
-
DefaultLinkPermission: number;
|
|
1370
|
-
DefaultODBMode: string;
|
|
1371
|
-
DefaultSharingLinkType: number;
|
|
1372
|
-
DisableAddToOneDrive: boolean;
|
|
1373
|
-
DisableBackToClassic: boolean;
|
|
1374
|
-
DisableCustomAppAuthentication: boolean;
|
|
1375
|
-
DisabledModernListTemplateIds: string[];
|
|
1376
|
-
DisabledWebPartIds: string[];
|
|
1377
|
-
DisableOutlookPSTVersionTrimming: boolean;
|
|
1378
|
-
DisablePersonalListCreation: boolean;
|
|
1379
|
-
DisableSpacesActivation: boolean;
|
|
1380
|
-
DisplayNamesOfFileViewers: boolean;
|
|
1381
|
-
DisplayNamesOfFileViewersInSpo: boolean;
|
|
1382
|
-
DisplayStartASiteOption: boolean;
|
|
1383
|
-
EmailAttestationEnabled: boolean;
|
|
1384
|
-
EmailAttestationReAuthDays: number;
|
|
1385
|
-
EmailAttestationRequired: boolean;
|
|
1386
|
-
EnableAIPIntegration: boolean;
|
|
1387
|
-
EnableAutoNewsDigest: boolean;
|
|
1388
|
-
EnableAzureADB2BIntegration: boolean;
|
|
1389
|
-
EnableGuestSignInAcceleration: boolean;
|
|
1390
|
-
EnableMinimumVersionRequirement: boolean;
|
|
1391
|
-
EnableMipSiteLabel: boolean;
|
|
1392
|
-
EnablePromotedFileHandlers: boolean;
|
|
1393
|
-
ExternalServicesEnabled: boolean;
|
|
1394
|
-
ExternalUserExpirationRequired: boolean;
|
|
1395
|
-
ExternalUserExpireInDays: number;
|
|
1396
|
-
FileAnonymousLinkType: number;
|
|
1397
|
-
FilePickerExternalImageSearchEnabled: boolean;
|
|
1398
|
-
FolderAnonymousLinkType: number;
|
|
1399
|
-
GuestSharingGroupAllowListInTenant: string;
|
|
1400
|
-
GuestSharingGroupAllowListInTenantByPrincipalIdentity: any;
|
|
1401
|
-
HasAdminCompletedCUConfiguration: boolean;
|
|
1402
|
-
HasIntelligentContentServicesCapability: boolean;
|
|
1403
|
-
HasTopicExperiencesCapability: boolean;
|
|
1404
|
-
HideSyncButtonOnDocLib: boolean;
|
|
1405
|
-
IBImplicitGroupBased: boolean;
|
|
1406
|
-
ImageTaggingOption: number;
|
|
1407
|
-
IncludeAtAGlanceInShareEmails: boolean;
|
|
1408
|
-
InformationBarriersSuspension: boolean;
|
|
1409
|
-
IPAddressAllowList: string;
|
|
1410
|
-
IPAddressEnforcement: boolean;
|
|
1411
|
-
IPAddressWACTokenLifetime: number;
|
|
1412
|
-
IsAppBarTemporarilyDisabled: boolean;
|
|
1413
|
-
IsCollabMeetingNotesFluidEnabled: boolean;
|
|
1414
|
-
IsFluidEnabled: boolean;
|
|
1415
|
-
IsHubSitesMultiGeoFlightEnabled: boolean;
|
|
1416
|
-
IsLoopEnabled: boolean;
|
|
1417
|
-
IsMultiGeo: boolean;
|
|
1418
|
-
IsMultipleHomeSitesFlightEnabled: boolean;
|
|
1419
|
-
IsWBFluidEnabled: boolean;
|
|
1420
|
-
LegacyAuthProtocolsEnabled: boolean;
|
|
1421
|
-
LimitedAccessFileType: number;
|
|
1422
|
-
MachineLearningCaptureEnabled: boolean;
|
|
1423
|
-
MediaTranscription: number;
|
|
1424
|
-
MobileFriendlyUrlEnabledInTenant: boolean;
|
|
1425
|
-
NotificationsInOneDriveForBusinessEnabled: boolean;
|
|
1426
|
-
NotificationsInSharePointEnabled: boolean;
|
|
1427
|
-
NotifyOwnersWhenInvitationsAccepted: boolean;
|
|
1428
|
-
NotifyOwnersWhenItemsReshared: boolean;
|
|
1429
|
-
ODBAccessRequests: number;
|
|
1430
|
-
ODBMembersCanShare: number;
|
|
1431
|
-
ODBSharingCapability: number;
|
|
1432
|
-
OfficeClientADALDisabled: boolean;
|
|
1433
|
-
OneDriveForGuestsEnabled: boolean;
|
|
1434
|
-
OneDriveLoopDefaultSharingLinkRole: number;
|
|
1435
|
-
OneDriveLoopDefaultSharingLinkScope: number;
|
|
1436
|
-
OneDriveLoopSharingCapability: number;
|
|
1437
|
-
OneDriveRequestFilesLinkEnabled: boolean;
|
|
1438
|
-
OneDriveRequestFilesLinkExpirationInDays: number;
|
|
1439
|
-
OneDriveStorageQuota: string;
|
|
1440
|
-
OrgNewsSiteUrl: string;
|
|
1441
|
-
OrphanedPersonalSitesRetentionPeriod: number;
|
|
1442
|
-
OwnerAnonymousNotification: boolean;
|
|
1443
|
-
PreventExternalUsersFromResharing: boolean;
|
|
1444
|
-
ProvisionSharedWithEveryoneFolder: boolean;
|
|
1445
|
-
RequireAcceptingAccountMatchInvitedAccount: boolean;
|
|
1446
|
-
RequireAnonymousLinksExpireInDays: number;
|
|
1447
|
-
RestrictedOneDriveLicense: boolean;
|
|
1448
|
-
SearchResolveExactEmailOrUPN: boolean;
|
|
1449
|
-
SharingAllowedDomainList: string[];
|
|
1450
|
-
SharingBlockedDomainList: string[];
|
|
1451
|
-
SharingCapability: number;
|
|
1452
|
-
SharingDomainRestrictionMode: number;
|
|
1453
|
-
ShowAllUsersClaim: boolean;
|
|
1454
|
-
ShowEveryoneClaim: boolean;
|
|
1455
|
-
ShowEveryoneExceptExternalUsersClaim: boolean;
|
|
1456
|
-
ShowPeoplePickerGroupSuggestionsForIB: boolean;
|
|
1457
|
-
ShowPeoplePickerSuggestionsForGuestUsers: boolean;
|
|
1458
|
-
SignInAccelerationDomain: string;
|
|
1459
|
-
StartASiteFormUrl: string;
|
|
1460
|
-
StopNew2010Workflows: boolean;
|
|
1461
|
-
StopNew2013Workflows: boolean;
|
|
1462
|
-
StreamLaunchConfig: number;
|
|
1463
|
-
StreamLaunchConfigLastUpdated: string;
|
|
1464
|
-
StreamLaunchConfigUpdateCount: number;
|
|
1465
|
-
SyncAadB2BManagementPolicy: boolean;
|
|
1466
|
-
SyncPrivacyProfileProperties: boolean;
|
|
1467
|
-
UseFindPeopleInPeoplePicker: boolean;
|
|
1468
|
-
UsePersistentCookiesForExplorerView: boolean;
|
|
1469
|
-
UserVoiceForFeedbackEnabled: boolean;
|
|
1470
|
-
ViewInFileExplorerEnabled: boolean;
|
|
1471
|
-
WhoCanShareAllowListInTenant: string;
|
|
1472
|
-
WhoCanShareAllowListInTenantByPrincipalIdentity: any;
|
|
1473
|
-
Workflow2010Disabled: boolean;
|
|
1474
|
-
Workflows2013State: number;
|
|
1475
|
-
}
|
|
1476
|
-
export declare enum SpecialCharactersState {
|
|
1477
|
-
NoPreference = 0,
|
|
1478
|
-
Allowed = 1,
|
|
1479
|
-
Disallowed = 2
|
|
1480
|
-
}
|
|
1481
|
-
export declare enum SensitiveByDefaultState {
|
|
1482
|
-
AllowExternalSharing = 0,
|
|
1483
|
-
BlockExternalSharing = 1
|
|
1484
|
-
}
|
|
1485
|
-
export interface ISitePropertiesEnumerableFilter {
|
|
1486
|
-
Filter: string;
|
|
1487
|
-
StartIndex: string;
|
|
1488
|
-
IncludeDetail: boolean;
|
|
1489
|
-
Template: string;
|
|
1490
|
-
IncludePersonalSite: PersonalSiteFilter;
|
|
1491
|
-
GroupIdDefined: number;
|
|
1492
|
-
}
|
|
1493
|
-
export declare enum PersonalSiteFilter {
|
|
1494
|
-
UseServerDefault = 0,
|
|
1495
|
-
Include = 1,
|
|
1496
|
-
Exclude = 2
|
|
1497
|
-
}
|
|
1498
|
-
/**
|
|
1499
|
-
* Basically useless from REST
|
|
1500
|
-
*/
|
|
1501
|
-
export interface ISPOOperation {
|
|
1502
|
-
HasTimedout: boolean;
|
|
1503
|
-
PollingInterval: number;
|
|
1504
|
-
IsComplete: boolean;
|
|
1505
|
-
}
|
|
1506
|
-
export interface ISiteCreationProps {
|
|
1507
|
-
Url: string;
|
|
1508
|
-
Owner: string;
|
|
1509
|
-
Title?: string;
|
|
1510
|
-
Template?: string;
|
|
1511
|
-
Lcid?: number;
|
|
1512
|
-
CompatibilityLevel?: number;
|
|
1513
|
-
StorageMaximumLevel?: number;
|
|
1514
|
-
StorageWarningLevel?: number;
|
|
1515
|
-
UserCodeMaximumLevel?: number;
|
|
1516
|
-
UserCodeWarningLevel?: number;
|
|
1517
|
-
TimeZoneId?: number;
|
|
1518
|
-
}
|
|
1519
|
-
export interface ISPOWebTemplatesInfo {
|
|
1520
|
-
Items: {
|
|
1521
|
-
CompatibilityLevel: number;
|
|
1522
|
-
Description: string;
|
|
1523
|
-
DisplayCategory: string | null;
|
|
1524
|
-
Id: number;
|
|
1525
|
-
Lcid: string;
|
|
1526
|
-
Name: string;
|
|
1527
|
-
Title: string;
|
|
1528
|
-
}[];
|
|
1529
|
-
}
|
|
1530
|
-
export interface IUpdateGroupSiteProperties {
|
|
1531
|
-
storageMaximumLevel: number;
|
|
1532
|
-
storageWarningLevel: number;
|
|
1533
|
-
}
|
|
1534
|
-
export interface ISPOSiteCreationSource {
|
|
1535
|
-
DisplayName: string;
|
|
1536
|
-
Id: string;
|
|
1537
|
-
Name: string;
|
|
1538
|
-
}
|
|
1539
|
-
export interface IPortalHealthStatus {
|
|
1540
|
-
Status: ResultStatus;
|
|
1541
|
-
Details: {
|
|
1542
|
-
PortalHealthErrorCode: any;
|
|
1543
|
-
Status: ResultStatus;
|
|
1544
|
-
ErrorReason: string;
|
|
1545
|
-
HelpLink: string;
|
|
1546
|
-
}[];
|
|
1547
|
-
}
|
|
1548
|
-
export declare enum ResultStatus {
|
|
1549
|
-
Success = 0,
|
|
1550
|
-
Warning = 1,
|
|
1551
|
-
Error = 2
|
|
1552
|
-
}
|
|
1553
|
-
export interface IPowerAppsEnvironment {
|
|
1554
|
-
DisplayName: string;
|
|
1555
|
-
Name: string;
|
|
1556
|
-
IsDefault: boolean;
|
|
1557
|
-
AllocatedAICredits: number;
|
|
1558
|
-
PurchasedAICredits: number;
|
|
1559
|
-
}
|
|
1560
|
-
export interface ISiteUserGroupsData {
|
|
1561
|
-
siteId: string;
|
|
1562
|
-
owners: IUserInfo[];
|
|
1563
|
-
members: IUserInfo[];
|
|
1564
|
-
visitors: IUserInfo[];
|
|
1565
|
-
}
|
|
1566
|
-
export interface IUserInfo {
|
|
1567
|
-
Email: string;
|
|
1568
|
-
DisplayName?: string;
|
|
1569
|
-
UserPrincipalName: string;
|
|
1570
|
-
}
|
|
1571
|
-
export interface ISiteAdministratorsFieldsData {
|
|
1572
|
-
siteId: string;
|
|
1573
|
-
siteAdministrators: string[];
|
|
1574
|
-
}
|
|
1575
|
-
export interface ISiteAdminsInfo {
|
|
1576
|
-
email: string;
|
|
1577
|
-
name: string;
|
|
1578
|
-
userPrincipalName: string;
|
|
1579
|
-
loginName: string;
|
|
1580
|
-
}
|
|
1581
|
-
export interface ISPHubSiteCreationInfo {
|
|
1582
|
-
Title: string;
|
|
1583
|
-
SiteId: string;
|
|
1584
|
-
TenantInstanceId: string;
|
|
1585
|
-
SiteUrl: string;
|
|
1586
|
-
LogoUrl: string;
|
|
1587
|
-
Description: string;
|
|
1588
|
-
Targets: string;
|
|
1589
|
-
SiteDesignId: string;
|
|
1590
|
-
RequiresJoinApproval: boolean;
|
|
1591
|
-
HideNameInNavigation: boolean;
|
|
1592
|
-
ParentHubSiteId: string;
|
|
1593
|
-
EnablePermissionsSync: boolean;
|
|
1594
|
-
EnforcedECTs: string;
|
|
1595
|
-
PermissionsSyncTag: number;
|
|
1596
|
-
EnforcedECTsVersion: number;
|
|
1597
|
-
}
|
|
1598
|
-
export declare enum SPOHubSiteUserRights {
|
|
1599
|
-
None = 0,
|
|
1600
|
-
Join = 1
|
|
1601
|
-
}
|
|
1602
|
-
export interface IHomeSitesDetails {
|
|
1603
|
-
SiteId: string;
|
|
1604
|
-
WebId: string;
|
|
1605
|
-
Audiences: string[];
|
|
1606
|
-
Url: string;
|
|
1607
|
-
Title: string;
|
|
1608
|
-
MatchingAudiences: string[];
|
|
1609
|
-
}
|
|
1610
|
-
//# sourceMappingURL=types.d.ts.map
|