@pnp/cli-microsoft365 11.6.0-beta.358a4f1 → 11.6.0-beta.bc374af
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/.devproxy/api-specs/sharepoint-admin.yaml +40 -0
- package/.devproxy/api-specs/sharepoint.yaml +48 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/entra/commands/user/user-recyclebinitem-list.js +5 -0
- package/dist/m365/outlook/commands/calendargroup/calendargroup-list.js +87 -0
- package/dist/m365/outlook/commands.js +1 -0
- package/dist/m365/spo/commands/agent/agent-add.js +172 -0
- package/dist/m365/spo/commands/list/list-set.js +186 -378
- package/dist/m365/spo/commands/navigation/navigation-node-get.js +18 -28
- package/dist/m365/spo/commands/navigation/navigation-node-list.js +14 -39
- package/dist/m365/spo/commands/site/site-accessrequest-setting-set.js +102 -0
- package/dist/m365/spo/commands/site/site-add.js +38 -8
- package/dist/m365/spo/commands/tenant/tenant-site-get.js +112 -0
- package/dist/m365/spo/commands.js +3 -0
- package/dist/utils/accessToken.js +21 -0
- package/dist/utils/brandCenter.js +29 -0
- package/docs/docs/cmd/entra/app/app-role-add.mdx +21 -0
- package/docs/docs/cmd/entra/app/app-role-list.mdx +20 -1
- package/docs/docs/cmd/entra/app/app-role-remove.mdx +22 -1
- package/docs/docs/cmd/entra/policy/policy-list.mdx +19 -0
- package/docs/docs/cmd/entra/resourcenamespace/resourcenamespace-list.mdx +19 -0
- package/docs/docs/cmd/outlook/calendargroup/calendargroup-list.mdx +120 -0
- package/docs/docs/cmd/spo/agent/agent-add.mdx +190 -0
- package/docs/docs/cmd/spo/list/list-set.mdx +19 -1
- package/docs/docs/cmd/spo/navigation/navigation-node-get.mdx +43 -10
- package/docs/docs/cmd/spo/navigation/navigation-node-list.mdx +36 -3
- package/docs/docs/cmd/spo/site/site-accessrequest-setting-set.mdx +77 -0
- package/docs/docs/cmd/spo/site/site-add.mdx +14 -5
- package/docs/docs/cmd/spo/tenant/tenant-site-get.mdx +479 -0
- package/package.json +1 -1
|
@@ -62,6 +62,46 @@ paths:
|
|
|
62
62
|
responses:
|
|
63
63
|
200:
|
|
64
64
|
description: OK
|
|
65
|
+
/_api/SPO.Tenant/sites('{id}'):
|
|
66
|
+
get:
|
|
67
|
+
parameters:
|
|
68
|
+
- name: id
|
|
69
|
+
in: path
|
|
70
|
+
required: true
|
|
71
|
+
schema:
|
|
72
|
+
type: string
|
|
73
|
+
description: The site collection ID (GUID)
|
|
74
|
+
- name: $select
|
|
75
|
+
in: query
|
|
76
|
+
required: false
|
|
77
|
+
schema:
|
|
78
|
+
type: string
|
|
79
|
+
description: e.g. "$select=Url" to retrieve only the site URL
|
|
80
|
+
security:
|
|
81
|
+
- delegated:
|
|
82
|
+
- AllSites.FullControl
|
|
83
|
+
- application:
|
|
84
|
+
- Sites.FullControl.All
|
|
85
|
+
responses:
|
|
86
|
+
200:
|
|
87
|
+
description: OK
|
|
88
|
+
/_api/web/lists/GetByTitle('{listTitle}')/RenderListDataAsStream:
|
|
89
|
+
post:
|
|
90
|
+
parameters:
|
|
91
|
+
- name: listTitle
|
|
92
|
+
in: path
|
|
93
|
+
required: true
|
|
94
|
+
schema:
|
|
95
|
+
type: string
|
|
96
|
+
description: The list title (e.g. DO_NOT_DELETE_SPLIST_TENANTADMIN_AGGREGATED_SITECOLLECTIONS)
|
|
97
|
+
security:
|
|
98
|
+
- delegated:
|
|
99
|
+
- AllSites.FullControl
|
|
100
|
+
- application:
|
|
101
|
+
- Sites.FullControl.All
|
|
102
|
+
responses:
|
|
103
|
+
200:
|
|
104
|
+
description: OK
|
|
65
105
|
x-ms-generated-by:
|
|
66
106
|
toolName: Dev Proxy
|
|
67
107
|
toolVersion: 0.25.0
|
|
@@ -402,6 +402,54 @@ paths:
|
|
|
402
402
|
responses:
|
|
403
403
|
200:
|
|
404
404
|
description: OK
|
|
405
|
+
/_api/web:
|
|
406
|
+
patch:
|
|
407
|
+
requestBody:
|
|
408
|
+
required: true
|
|
409
|
+
content:
|
|
410
|
+
application/json:
|
|
411
|
+
example:
|
|
412
|
+
RequestAccessEmail: "john.doe@contoso.com"
|
|
413
|
+
security:
|
|
414
|
+
- delegated:
|
|
415
|
+
- AllSites.FullControl
|
|
416
|
+
- application:
|
|
417
|
+
- Sites.FullControl.All
|
|
418
|
+
responses:
|
|
419
|
+
200:
|
|
420
|
+
description: OK
|
|
421
|
+
/_api/web/SetUseAccessRequestDefaultAndUpdate:
|
|
422
|
+
post:
|
|
423
|
+
requestBody:
|
|
424
|
+
required: true
|
|
425
|
+
content:
|
|
426
|
+
application/json:
|
|
427
|
+
example:
|
|
428
|
+
useAccessRequestDefault: true
|
|
429
|
+
security:
|
|
430
|
+
- delegated:
|
|
431
|
+
- AllSites.FullControl
|
|
432
|
+
- application:
|
|
433
|
+
- Sites.FullControl.All
|
|
434
|
+
responses:
|
|
435
|
+
200:
|
|
436
|
+
description: OK
|
|
437
|
+
/_api/web/SetAccessRequestSiteDescriptionAndUpdate:
|
|
438
|
+
post:
|
|
439
|
+
requestBody:
|
|
440
|
+
required: true
|
|
441
|
+
content:
|
|
442
|
+
application/json:
|
|
443
|
+
example:
|
|
444
|
+
description: "Motivate why you need access."
|
|
445
|
+
security:
|
|
446
|
+
- delegated:
|
|
447
|
+
- AllSites.FullControl
|
|
448
|
+
- application:
|
|
449
|
+
- Sites.FullControl.All
|
|
450
|
+
responses:
|
|
451
|
+
200:
|
|
452
|
+
description: OK
|
|
405
453
|
x-ms-generated-by:
|
|
406
454
|
toolName: Dev Proxy
|
|
407
455
|
toolVersion: 0.25.0
|