@pnp/cli-microsoft365 10.2.0-beta.9e186e5 → 10.2.0

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,464 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # spp model get
6
+
7
+ Retrieves information about a document understanding model
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 spp model get [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-u, --siteUrl <siteUrl>`
19
+ : The URL of the content center site.
20
+
21
+ `-i, --id [id]`
22
+ : The unique ID of the model to retrieve. Specify `id` or `title` but not both.
23
+
24
+ `-t, --title [title]`
25
+ : The display name of the model to retrieve. Specify `id` or `title` but not both.
26
+
27
+ `--withPublications`
28
+ : Retrieves information about the library where it has been applied.
29
+ ```
30
+
31
+ <Global />
32
+
33
+ ## Examples
34
+
35
+ Retrieve information about a SharePoint Premium document understanding model, using model UniqueId.
36
+
37
+ ```sh
38
+ m365 spp model get --siteUrl "https://contoso.sharepoint.com/sites/ContentCenter" --id "7645e69d-21fb-4a24-a17a-9bdfa7cb63dc"
39
+ ```
40
+
41
+ Retrieve information about a SharePoint Premium document understanding model, using model Title
42
+
43
+ ```sh
44
+ m365 spp model get --siteUrl "https://contoso.sharepoint.com/sites/ContentCenter" --title "climicrosoft365Model"
45
+ ```
46
+
47
+ ## Response
48
+
49
+ ### Standard response
50
+
51
+ <Tabs>
52
+ <TabItem value="JSON">
53
+
54
+ ```json
55
+ {
56
+ "AIBuilderHybridModelType": null,
57
+ "AzureCognitivePrebuiltModelName": null,
58
+ "BaseContentTypeName": null,
59
+ "ConfidenceScore": {
60
+ "trainingStatus": {
61
+ "kind": "original",
62
+ "ClassifierStatus": {
63
+ "TrainingStatus": "success",
64
+ "TimeStamp": 1604429035541
65
+ },
66
+ "ExtractorsStatus": [
67
+ {
68
+ "TimeStamp": 1604429033385,
69
+ "ExtractorName": "Contributor",
70
+ "TrainingStatus": "success"
71
+ }
72
+ ]
73
+ },
74
+ "modelAccuracy": {
75
+ "Classifier": 1,
76
+ "Extractors": {
77
+ "Contributor": 1
78
+ }
79
+ },
80
+ "perSampleAccuracy": {
81
+ "43": {
82
+ "Classifier": 1,
83
+ "Extractors": {
84
+ "Contributor": 1
85
+ }
86
+ }
87
+ },
88
+ "perSamplePrediction": {
89
+ "43": {
90
+ "Extractors": {
91
+ "Contributor": [
92
+ "Benefit Change Notice"
93
+ ]
94
+ }
95
+ }
96
+ },
97
+ "trainingFailures": {}
98
+ },
99
+ "ContentTypeGroup": "Intelligent Document Content Types",
100
+ "ContentTypeId": "0x010100B992472522B7C04E9101F1CFD07E4ADC",
101
+ "ContentTypeName": "BenefitsChangeNotice",
102
+ "Created": "2020-11-03T12:30:55Z",
103
+ "CreatedBy": "i:0#.w|sharepoint\\system",
104
+ "DriveId": "b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj",
105
+ "Explanations": {
106
+ "Classifier": [
107
+ {
108
+ "id": "24f0b71f-87c6-4f7d-9797-88e9eab00cb6",
109
+ "kind": "dictionaryFeature",
110
+ "name": "Contains ",
111
+ "active": true,
112
+ "nGrams": [
113
+ "Benefit Change Notice"
114
+ ],
115
+ "caseSensitive": true,
116
+ "ignoreDigitIdentity": false,
117
+ "ignoreLetterIdentity": false
118
+ }
119
+ ],
120
+ "Extractors": {
121
+ "Contributor": [
122
+ {
123
+ "id": "9abdbfc9-6425-4e03-a344-305d3e60ad7f",
124
+ "kind": "dictionaryFeature",
125
+ "name": "text",
126
+ "active": true,
127
+ "nGrams": [
128
+ "Benefit Change Notice"
129
+ ],
130
+ "caseSensitive": false,
131
+ "ignoreDigitIdentity": false,
132
+ "ignoreLetterIdentity": false
133
+ }
134
+ ]
135
+ }
136
+ },
137
+ "ID": 3,
138
+ "LastTrained": "2020-11-03T18:43:53Z",
139
+ "ListID": "bc696b17-378c-4347-b509-5d52cc6f3823",
140
+ "ModelSettings": null,
141
+ "ModelType": 2,
142
+ "Modified": "2024-06-27T02:45:32Z",
143
+ "ModifiedBy": "i:0#.w|sharepoint\\system",
144
+ "ObjectId": "01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S",
145
+ "PublicationType": 0,
146
+ "Schemas": {
147
+ "Extractors": {
148
+ "Contributor": {
149
+ "concepts": {
150
+ "6af8ef33-4bf1-49ca-93d3-7a2358746747": {
151
+ "name": "Contributor"
152
+ }
153
+ },
154
+ "relationships": []
155
+ }
156
+ }
157
+ },
158
+ "SourceSiteUrl": "https://contoso.sharepoint.com/sites/ContentCenter",
159
+ "SourceUrl": null,
160
+ "SourceWebServerRelativeUrl": "/sites/ContentCenter",
161
+ "UniqueId": "b10e0de5-c069-46f9-90f7-4fb8ac001372"
162
+ }
163
+ ```
164
+
165
+ </TabItem>
166
+ <TabItem value="Text">
167
+
168
+ ```text
169
+ AIBuilderHybridModelType : null
170
+ AzureCognitivePrebuiltModelName: null
171
+ BaseContentTypeName : null
172
+ ConfidenceScore : {"trainingStatus":{"kind":"original","ClassifierStatus":{"TrainingStatus":"success","TimeStamp":1604429035541},"ExtractorsStatus":[{"TimeStamp":1604429033385,"ExtractorName":"Contributor","TrainingStatus":"success"}]},"modelAccuracy":{"Classifier":1,"Extractors":{"Contributor":1}},"perSampleAccuracy":{"43":{"Classifier":1,"Extractors":{"Contributor":1}}},"perSamplePrediction":{"43":{"Extractors":{"Contributor":["Benefit Change Notice"]}}},"trainingFailures":{}}
173
+ ContentTypeGroup : Intelligent Document Content Types
174
+ ContentTypeId : 0x010100B992472522B7C04E9101F1CFD07E4ADC
175
+ ContentTypeName : BenefitsChangeNotice
176
+ Created : 2020-11-03T12:30:55Z
177
+ CreatedBy : i:0#.w|sharepoint\system
178
+ DriveId : b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj
179
+ Explanations : {"Classifier":[{"id":"24f0b71f-87c6-4f7d-9797-88e9eab00cb6","kind":"dictionaryFeature","name":"Contains \"Benefit Change Notice\"","active":true,"nGrams":["Benefit Change Notice"],"caseSensitive":true,"ignoreDigitIdentity":false,"ignoreLetterIdentity":false}],"Extractors":{"Contributor":[{"id":"9abdbfc9-6425-4e03-a344-305d3e60ad7f","kind":"dictionaryFeature","name":"text","active":true,"nGrams":["Benefit Change Notice"],"caseSensitive":false,"ignoreDigitIdentity":false,"ignoreLetterIdentity":false}]}}
180
+ ID : 3
181
+ LastTrained : 2020-11-03T18:43:53Z
182
+ ListID : bc696b17-378c-4347-b509-5d52cc6f3823
183
+ ModelSettings : null
184
+ ModelType : 2
185
+ Modified : 2024-06-27T02:45:32Z
186
+ ModifiedBy : i:0#.w|sharepoint\system
187
+ ObjectId : 01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S
188
+ PublicationType : 0
189
+ SourceSiteUrl : https://contoso.sharepoint.com/sites/ContentCenter
190
+ SourceUrl : null
191
+ SourceWebServerRelativeUrl : /sites/ContentCenter
192
+ UniqueId : b10e0de5-c069-46f9-90f7-4fb8ac001372
193
+ ```
194
+
195
+ </TabItem>
196
+ <TabItem value="CSV">
197
+
198
+ ```csv
199
+ AIBuilderHybridModelType,AzureCognitivePrebuiltModelName,BaseContentTypeName,ContentTypeGroup,ContentTypeId,ContentTypeName,Created,CreatedBy,DriveId,ID,LastTrained,ListID,ModelName,ModelType,Modified,ModifiedBy,ObjectId,PublicationType,SourceSiteUrl,SourceUrl,SourceWebServerRelativeUrl,UniqueId
200
+ ,,,Intelligent Document Content Types,0x010100B992472522B7C04E9101F1CFD07E4ADC,BenefitsChangeNotice,2020-11-03T12:30:55Z,i:0#.w|sharepoint\system,b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj,3,2020-11-03T18:43:53Z,bc696b17-378c-4347-b509-5d52cc6f3823,B
201
+ ```
202
+
203
+ </TabItem>
204
+ <TabItem value="Markdown">
205
+
206
+ ```md
207
+ # spp model get --siteUrl "https://contoso.sharepoint.com/sites/ContentCenter" --id "b10e0de5-c069-46f9-90f7-4fb8ac001372"
208
+
209
+ Date: 29/09/2024
210
+
211
+ ## 3
212
+
213
+ Property | Value
214
+ ---------|-------
215
+ ContentTypeGroup | Intelligent Document Content Types
216
+ ContentTypeId | 0x010100B992472522B7C04E9101F1CFD07E4ADC
217
+ ContentTypeName | BenefitsChangeNotice
218
+ Created | 2020-11-03T12:30:55Z
219
+ CreatedBy | i:0#.w\|sharepoint\system
220
+ DriveId | b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj
221
+ ID | 3
222
+ LastTrained | 2020-11-03T18:43:53Z
223
+ ListID | bc696b17-378c-4347-b509-5d52cc6f3823
224
+ ModelName | BenefitsChangeNotice
225
+ ModelType | 2
226
+ Modified | 2024-11-08T04:49:57Z
227
+ ModifiedBy | i:0#.w\|sharepoint\system
228
+ ObjectId | 01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S
229
+ PublicationType | 0
230
+ SourceSiteUrl | https://contoso.sharepoint.com/sites/ContentCenter
231
+ SourceWebServerRelativeUrl | /sites/ContentCenter
232
+ UniqueId | b10e0de5-c069-46f9-90f7-4fb8ac001372
233
+ ```
234
+
235
+ </TabItem>
236
+ </Tabs>
237
+
238
+ ### `withPublications` response
239
+
240
+ When we make use of the option `withPublications`, the response will differ.
241
+
242
+ <Tabs>
243
+ <TabItem value="JSON">
244
+
245
+ ```json
246
+ {
247
+ "AIBuilderHybridModelType": null,
248
+ "AzureCognitivePrebuiltModelName": null,
249
+ "BaseContentTypeName": null,
250
+ "ConfidenceScore": {
251
+ "trainingStatus": {
252
+ "kind": "original",
253
+ "ClassifierStatus": {
254
+ "TrainingStatus": "success",
255
+ "TimeStamp": 1604429035541
256
+ },
257
+ "ExtractorsStatus": [
258
+ {
259
+ "TimeStamp": 1604429033385,
260
+ "ExtractorName": "Contributor",
261
+ "TrainingStatus": "success"
262
+ }
263
+ ]
264
+ },
265
+ "modelAccuracy": {
266
+ "Classifier": 1,
267
+ "Extractors": {
268
+ "Contributor": 1
269
+ }
270
+ },
271
+ "perSampleAccuracy": {
272
+ "43": {
273
+ "Classifier": 1,
274
+ "Extractors": {
275
+ "Contributor": 1
276
+ }
277
+ }
278
+ },
279
+ "perSamplePrediction": {
280
+ "43": {
281
+ "Extractors": {
282
+ "Contributor": [
283
+ "Benefit Change Notice"
284
+ ]
285
+ }
286
+ }
287
+ },
288
+ "trainingFailures": {}
289
+ },
290
+ "ContentTypeGroup": "Intelligent Document Content Types",
291
+ "ContentTypeId": "0x010100B992472522B7C04E9101F1CFD07E4ADC",
292
+ "ContentTypeName": "BenefitsChangeNotice",
293
+ "Created": "2020-11-03T12:30:55Z",
294
+ "CreatedBy": "i:0#.w|sharepoint\\system",
295
+ "DriveId": "b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj",
296
+ "Explanations": {
297
+ "Classifier": [
298
+ {
299
+ "id": "24f0b71f-87c6-4f7d-9797-88e9eab00cb6",
300
+ "kind": "dictionaryFeature",
301
+ "name": "Contains Benefit Change Notice",
302
+ "active": true,
303
+ "nGrams": [
304
+ "Benefit Change Notice"
305
+ ],
306
+ "caseSensitive": true,
307
+ "ignoreDigitIdentity": false,
308
+ "ignoreLetterIdentity": false
309
+ }
310
+ ],
311
+ "Extractors": {
312
+ "Contributor": [
313
+ {
314
+ "id": "9abdbfc9-6425-4e03-a344-305d3e60ad7f",
315
+ "kind": "dictionaryFeature",
316
+ "name": "text",
317
+ "active": true,
318
+ "nGrams": [
319
+ "Benefit Change Notice"
320
+ ],
321
+ "caseSensitive": false,
322
+ "ignoreDigitIdentity": false,
323
+ "ignoreLetterIdentity": false
324
+ }
325
+ ]
326
+ }
327
+ },
328
+ "ID": 3,
329
+ "LastTrained": "2020-11-03T18:43:53Z",
330
+ "ListID": "bc696b17-378c-4347-b509-5d52cc6f3823",
331
+ "ModelSettings": null,
332
+ "ModelType": 2,
333
+ "Modified": "2024-06-27T02:45:32Z",
334
+ "ModifiedBy": "i:0#.w|sharepoint\\system",
335
+ "ObjectId": "01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S",
336
+ "PublicationType": 0,
337
+ "Schemas": {
338
+ "Extractors": {
339
+ "Contributor": {
340
+ "concepts": {
341
+ "6af8ef33-4bf1-49ca-93d3-7a2358746747": {
342
+ "name": "Contributor"
343
+ }
344
+ },
345
+ "relationships": []
346
+ }
347
+ }
348
+ },
349
+ "SourceSiteUrl": "https://contoso.sharepoint.com/sites/ContentCenter",
350
+ "SourceUrl": null,
351
+ "SourceWebServerRelativeUrl": "/sites/ContentCenter",
352
+ "UniqueId": "b10e0de5-c069-46f9-90f7-4fb8ac001372",
353
+ "Publications": [
354
+ {
355
+ "Created": "2020-11-03T12:52:12Z",
356
+ "CreatedBy": "i:0#.f|membership|user@contoso.onmicrosoft.com",
357
+ "DriveId": "b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-e-6B-bO36LRI87VfSrxwy9",
358
+ "HasTargetSitePermission": true,
359
+ "ID": 1,
360
+ "ModelId": 3,
361
+ "ModelName": "BenefitsChangeNotice.classifier",
362
+ "ModelType": 0,
363
+ "ModelUniqueId": "b10e0de5-c069-46f9-90f7-4fb8ac001372",
364
+ "ModelVersion": "2.0",
365
+ "Modified": "2020-11-03T18:45:18Z",
366
+ "ModifiedBy": "i:0#.f|membership|user@contoso.onmicrosoft.com",
367
+ "ObjectId": "01XHOXSCVXVZCQAAQWCNGK6NGADKKZUMW7",
368
+ "PublicationType": 1,
369
+ "TargetLibraryId": "7eb6c306-1680-4ba9-9bbe-6b5b7efb27be",
370
+ "TargetLibraryName": "Documents",
371
+ "TargetLibraryRemoved": false,
372
+ "TargetLibraryServerRelativeUrl": "/sites/Spaces/Shared%20Documents",
373
+ "TargetLibraryUrl": "https://contoso.sharepoint.com/sites/Spaces/Shared%20Documents",
374
+ "TargetSiteId": "7e44de0a-30e3-45ab-a601-057298c9068f",
375
+ "TargetSiteUrl": "https://contoso.sharepoint.com/sites/Spaces",
376
+ "TargetTableListId": "00000000-0000-0000-0000-000000000000",
377
+ "TargetTableListName": null,
378
+ "TargetTableListRemoved": false,
379
+ "TargetTableListServerRelativeUrl": null,
380
+ "TargetTableListUrl": null,
381
+ "TargetWebId": "9166df43-8e45-43b8-94ef-3a22826346de",
382
+ "TargetWebName": "Spaces",
383
+ "TargetWebServerRelativeUrl": "/sites/Spaces",
384
+ "UniqueId": "0045aeb7-1602-4c13-af34-c01a959a32df",
385
+ "ViewOption": "NewViewAsDefault"
386
+ }
387
+ ]
388
+ }
389
+ ```
390
+
391
+ </TabItem>
392
+ <TabItem value="Text">
393
+
394
+ ```text
395
+ AIBuilderHybridModelType : null
396
+ AzureCognitivePrebuiltModelName: null
397
+ BaseContentTypeName : null
398
+ ConfidenceScore : {"trainingStatus":{"kind":"original","ClassifierStatus":{"TrainingStatus":"success","TimeStamp":1604429035541},"ExtractorsStatus":[{"TimeStamp":1604429033385,"ExtractorName":"Contributor","TrainingStatus":"success"}]},"modelAccuracy":{"Classifier":1,"Extractors":{"Contributor":1}},"perSampleAccuracy":{"43":{"Classifier":1,"Extractors":{"Contributor":1}}},"perSamplePrediction":{"43":{"Extractors":{"Contributor":["Benefit Change Notice"]}}},"trainingFailures":{}}
399
+ ContentTypeGroup : Intelligent Document Content Types
400
+ ContentTypeId : 0x010100B992472522B7C04E9101F1CFD07E4ADC
401
+ ContentTypeName : BenefitsChangeNotice
402
+ Created : 2020-11-03T12:30:55Z
403
+ CreatedBy : i:0#.w|sharepoint\system
404
+ DriveId : b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj
405
+ Explanations : {"Classifier":[{"id":"24f0b71f-87c6-4f7d-9797-88e9eab00cb6","kind":"dictionaryFeature","name":"Contains \"Benefit Change Notice\"","active":true,"nGrams":["Benefit Change Notice"],"caseSensitive":true,"ignoreDigitIdentity":false,"ignoreLetterIdentity":false}],"Extractors":{"Contributor":[{"id":"9abdbfc9-6425-4e03-a344-305d3e60ad7f","kind":"dictionaryFeature","name":"text","active":true,"nGrams":["Benefit Change Notice"],"caseSensitive":false,"ignoreDigitIdentity":false,"ignoreLetterIdentity":false}]}}
406
+ ID : 3
407
+ LastTrained : 2020-11-03T18:43:53Z
408
+ ListID : bc696b17-378c-4347-b509-5d52cc6f3823
409
+ ModelSettings : null
410
+ ModelType : 2
411
+ Modified : 2024-06-27T02:45:32Z
412
+ ModifiedBy : i:0#.w|sharepoint\system
413
+ ObjectId : 01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S
414
+ PublicationType : 0
415
+ Publications : [{"Created":"2020-11-03T12:52:12Z","CreatedBy":"i:0#.f|membership|user@contoso.onmicrosoft.com","DriveId":"b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-e-6B-bO36LRI87VfSrxwy9","HasTargetSitePermission":true,"ID":1,"ModelId":3,"ModelName":"BenefitsChangeNotice.classifier","ModelType":0,"ModelUniqueId":"b10e0de5-c069-46f9-90f7-4fb8ac001372","ModelVersion":"2.0","Modified":"2020-11-03T18:45:18Z","ModifiedBy":"i:0#.f|membership|user@contoso.onmicrosoft.com","ObjectId":"01XHOXSCVXVZCQAAQWCNGK6NGADKKZUMW7","PublicationType":1,"TargetLibraryId":"7eb6c306-1680-4ba9-9bbe-6b5b7efb27be","TargetLibraryName":"Documents","TargetLibraryRemoved":false,"TargetLibraryServerRelativeUrl":"/sites/Spaces/Shared%20Documents","TargetLibraryUrl":"https://contoso.sharepoint.com/sites/Spaces/Shared%20Documents","TargetSiteId":"7e44de0a-30e3-45ab-a601-057298c9068f","TargetSiteUrl":"https://contoso.sharepoint.com/sites/Spaces","TargetTableListId":"00000000-0000-0000-0000-000000000000","TargetTableListName":null,"TargetTableListRemoved":false,"TargetTableListServerRelativeUrl":null,"TargetTableListUrl":null,"TargetWebId":"9166df43-8e45-43b8-94ef-3a22826346de","TargetWebName":"Spaces","TargetWebServerRelativeUrl":"/sites/Spaces","UniqueId":"0045aeb7-1602-4c13-af34-c01a959a32df","ViewOption":"NewViewAsDefault"}]
416
+ Schemas : {"Extractors":{"Contributor":{"concepts":{"6af8ef33-4bf1-49ca-93d3-7a2358746747":{"name":"Contributor"}},"relationships":[]}}}
417
+ SourceSiteUrl : https://contoso.sharepoint.com/sites/ContentCenter
418
+ SourceUrl : null
419
+ SourceWebServerRelativeUrl : /sites/ContentCenter
420
+ UniqueId : b10e0de5-c069-46f9-90f7-4fb8ac001372
421
+ ```
422
+
423
+ </TabItem>
424
+ <TabItem value="CSV">
425
+
426
+ ```csv
427
+ AIBuilderHybridModelType,AzureCognitivePrebuiltModelName,BaseContentTypeName,ContentTypeGroup,ContentTypeId,ContentTypeName,Created,CreatedBy,DriveId,ID,LastTrained,ListID,ModelName,ModelType,Modified,ModifiedBy,ObjectId,PublicationType,SourceSiteUrl,SourceUrl,SourceWebServerRelativeUrl,UniqueId
428
+ ,,,Intelligent Document Content Types,0x010100B992472522B7C04E9101F1CFD07E4ADC,BenefitsChangeNotice,2020-11-03T12:30:55Z,i:0#.w|sharepoint\system,b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj,3,2020-11-03T18:43:53Z,bc696b17-378c-4347-b509-5d52cc6f3823,BenefitsChangeNotice,2,2024-11-08T04:49:57Z,i:0#.w|sharepoint\system,01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S,0,https://contoso.sharepoint.com/sites/ContentCenter,,/sites/ContentCenter,b10e0de5-c069-46f9-90f7-4fb8ac001372
429
+ ```
430
+
431
+ </TabItem>
432
+ <TabItem value="Markdown">
433
+
434
+ ```md
435
+ # spp model get --siteUrl "https://contoso.sharepoint.com/sites/ContentCenter" --id "b10e0de5-c069-46f9-90f7-4fb8ac001372" --withPublications
436
+
437
+ Date: 29/09/2024
438
+
439
+ ## 3
440
+
441
+ Property | Value
442
+ ---------|-------
443
+ ContentTypeGroup | Intelligent Document Content Types
444
+ ContentTypeId | 0x010100B992472522B7C04E9101F1CFD07E4ADC
445
+ ContentTypeName | BenefitsChangeNotice
446
+ Created | 2020-11-03T12:30:55Z
447
+ CreatedBy | i:0#.w\|sharepoint\system
448
+ DriveId | b!7w273MPU8kiqSKc6SWaUkQ3wyRgeHbxDh-e6ShP9X-cXa2m8jDdHQ7UJXVLMbzgj
449
+ ID | 3
450
+ LastTrained | 2020-11-03T18:43:53Z
451
+ ListID | bc696b17-378c-4347-b509-5d52cc6f3823
452
+ ModelName | BenefitsChangeNotice
453
+ ModelType | 2
454
+ Modified | 2024-11-08T04:49:57Z
455
+ ModifiedBy | i:0#.w\|sharepoint\system
456
+ ObjectId | 01XHOXSCXFBUHLC2OA7FDJB52PXCWAAE3S
457
+ PublicationType | 0
458
+ SourceSiteUrl | https://contoso.sharepoint.com/sites/ContentCenter
459
+ SourceWebServerRelativeUrl | /sites/ContentCenter
460
+ UniqueId | b10e0de5-c069-46f9-90f7-4fb8ac001372
461
+ ```
462
+
463
+ </TabItem>
464
+ </Tabs>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "10.2.0-beta.9e186e5",
3
+ "version": "10.2.0",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -312,4 +312,4 @@
312
312
  "sinon": "^19.0.2",
313
313
  "source-map-support": "^0.5.21"
314
314
  }
315
- }
315
+ }