@pnp/cli-microsoft365 11.10.0-beta.68e3b93 → 11.10.0-beta.df8d498

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.
@@ -1,4 +1,4 @@
1
- FROM FROM waldekm/powershell:alpine-3.23
1
+ FROM waldekm/powershell:alpine-3.23
2
2
 
3
3
  LABEL name="CLI for Microsoft 365 Development" \
4
4
  description="Development container for contributing to CLI for Microsoft 365" \
@@ -62,6 +62,46 @@ paths:
62
62
  responses:
63
63
  200:
64
64
  description: OK
65
+ /_api/SPHSite/AddHomeSite:
66
+ post:
67
+ security:
68
+ - delegated:
69
+ - AllSites.FullControl
70
+ - application:
71
+ - Sites.FullControl.All
72
+ responses:
73
+ 200:
74
+ description: OK
75
+ /_api/SPO.Tenant/GetSitePropertiesByUrl:
76
+ post:
77
+ security:
78
+ - delegated:
79
+ - AllSites.FullControl
80
+ - application:
81
+ - Sites.FullControl.All
82
+ responses:
83
+ 200:
84
+ description: OK
85
+ /_api/SPO.Tenant/GetTargetedSitesDetails:
86
+ get:
87
+ security:
88
+ - delegated:
89
+ - AllSites.FullControl
90
+ - application:
91
+ - Sites.FullControl.All
92
+ responses:
93
+ 200:
94
+ description: OK
95
+ /_api/SPO.Tenant/RemoveTargetedSite:
96
+ post:
97
+ security:
98
+ - delegated:
99
+ - AllSites.FullControl
100
+ - application:
101
+ - Sites.FullControl.All
102
+ responses:
103
+ 200:
104
+ description: OK
65
105
  /_api/SPO.Tenant/sites('{id}'):
66
106
  get:
67
107
  parameters:
@@ -85,6 +125,16 @@ paths:
85
125
  responses:
86
126
  200:
87
127
  description: OK
128
+ /_api/SPO.Tenant/UpdateTargetedSite:
129
+ post:
130
+ security:
131
+ - delegated:
132
+ - AllSites.FullControl
133
+ - application:
134
+ - Sites.FullControl.All
135
+ responses:
136
+ 200:
137
+ description: OK
88
138
  /_api/web/lists/GetByTitle('{listTitle}')/RenderListDataAsStream:
89
139
  post:
90
140
  parameters:
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM FROM waldekm/powershell:alpine-3.23
1
+ FROM waldekm/powershell:alpine-3.23
2
2
 
3
3
  ARG CLI_VERSION=latest
4
4