Skip to content

Commit f1a672f

Browse files
committed
SharePoint model updated to 16.0.24803.12007 version
1 parent e6d6b4f commit f1a672f

37 files changed

+1385
-178
lines changed

examples/Photo/myprofile.png

+1-1
Loading

generator/Settings.SharePoint.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"docsRoot": "https:\/\/docs.microsoft.com\/en-us\/openspecs\/sharepoint_protocols\/ms-csomspt\/",
77
"rootNamespace": "Office365\\SharePoint",
88
"entityRootNamespace": "SP",
9-
"version": "16.0.24628.12008",
10-
"timestamp": "2024-03-17T10:39:33+00:00",
9+
"version": "16.0.24803.12007",
10+
"timestamp": "2024-04-20T08:07:39+00:00",
1111
"placeholder": "Generated ",
1212
"typeMappings": {
1313
"SP.List": "SP.SPList",

generator/metadata/SharePoint.xml

+718-150
Large diffs are not rendered by default.

src/Runtime/Http/Response.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __construct($content, $curlInfo, RequestOptions $requestOptions)
2121
* returns a Array including all response headers of
2222
* this request. when RequestOptions::IncludeHeaders was not
2323
* set to true this will be empty.
24-
* @return Array
24+
* @return array
2525
*/
2626
public function getHeaders()
2727
{
@@ -109,7 +109,7 @@ public function getContentType()
109109
/**
110110
* returns the array of curl_getinfo.
111111
* Check https://www.php.net/manual/function.curl-getinfo.php for the available keys.
112-
* @return Array
112+
* @return array
113113
*/
114114
public function getCurlInfo()
115115
{
@@ -150,7 +150,7 @@ public function getContent()
150150
protected $RequestOptions;
151151

152152
/**
153-
* @var Array
153+
* @var array
154154
*/
155155
protected $CurlInfo;
156156

src/SharePoint/AgreementDataPair.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class AgreementDataPair extends ClientValue
10+
{
11+
/**
12+
* @var integer
13+
*/
14+
public $Count;
15+
/**
16+
* @var string
17+
*/
18+
public $Name;
19+
}

src/SharePoint/AgreementLocation.php

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class AgreementLocation extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $CategoryLabel;
15+
/**
16+
* @var string
17+
*/
18+
public $LibraryId;
19+
/**
20+
* @var string
21+
*/
22+
public $SiteId;
23+
/**
24+
* @var string
25+
*/
26+
public $WebId;
27+
}
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class AgreementReportBaseData extends ClientValue
10+
{
11+
/**
12+
* @var integer
13+
*/
14+
public $Expired;
15+
/**
16+
* @var integer
17+
*/
18+
public $InEffect;
19+
/**
20+
* @var integer
21+
*/
22+
public $NearExpiration;
23+
}
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class AgreementReportFilter extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $Category;
15+
/**
16+
* @var string
17+
*/
18+
public $FirstParty;
19+
/**
20+
* @var string
21+
*/
22+
public $Language;
23+
/**
24+
* @var string
25+
*/
26+
public $Location;
27+
/**
28+
* @var string
29+
*/
30+
public $Owner;
31+
/**
32+
* @var string
33+
*/
34+
public $SecondParty;
35+
/**
36+
* @var string
37+
*/
38+
public $State;
39+
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class AgreementSummaryData extends ClientValue
10+
{
11+
/**
12+
* @var integer
13+
*/
14+
public $Evergreen;
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class ApprovalConfigurationResponse extends ClientValue
10+
{
11+
/**
12+
* @var integer
13+
*/
14+
public $ApprovalConfigurationID;
15+
/**
16+
* @var string
17+
*/
18+
public $CategoryID;
19+
/**
20+
* @var string
21+
*/
22+
public $CategoryLabel;
23+
/**
24+
* @var string
25+
*/
26+
public $Country;
27+
/**
28+
* @var string
29+
*/
30+
public $Language;
31+
/**
32+
* @var string
33+
*/
34+
public $Source;
35+
}

src/SharePoint/ConfiguredUserInfo.php

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class ConfiguredUserInfo extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $Email;
15+
/**
16+
* @var string
17+
*/
18+
public $LoginName;
19+
/**
20+
* @var string
21+
*/
22+
public $Name;
23+
/**
24+
* @var integer
25+
*/
26+
public $UserId;
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class CreateAgreementFolderInfo extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $AgreementFolderServerRelativeUrl;
15+
/**
16+
* @var string
17+
*/
18+
public $AgreementNumber;
19+
}
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class DeviationAnalysisRule extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $Definition;
15+
/**
16+
* @var array
17+
*/
18+
public $FallbackClauses;
19+
/**
20+
* @var string
21+
*/
22+
public $Id;
23+
/**
24+
* @var bool
25+
*/
26+
public $IsAcceptable;
27+
/**
28+
* @var array
29+
*/
30+
public $Notes;
31+
/**
32+
* @var string
33+
*/
34+
public $RuleName;
35+
/**
36+
* @var bool
37+
*/
38+
public $SendForApproval;
39+
}

src/SharePoint/DocumentGenerationInfo.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Generated 2024-03-17T10:39:33+00:00 16.0.24628.12008
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
55
*/
66
namespace Office365\SharePoint;
77

@@ -36,4 +36,8 @@ class DocumentGenerationInfo extends ClientValue
3636
* @var bool
3737
*/
3838
public $CopyFieldsFromExistingDocument;
39+
/**
40+
* @var bool
41+
*/
42+
public $UpdateFolderPermissions;
3943
}

src/SharePoint/File.php

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
55
*/
66
namespace Office365\SharePoint;
77

@@ -1037,4 +1037,18 @@ public function getVersionExpirationReport()
10371037
{
10381038
return $this->getProperty("VersionExpirationReport", new FileVersionCollection($this->getContext(), new ResourcePath("VersionExpirationReport", $this->getResourcePath())));
10391039
}
1040+
/**
1041+
* @return bool
1042+
*/
1043+
public function getExistsWithException()
1044+
{
1045+
return $this->getProperty("ExistsWithException");
1046+
}
1047+
/**
1048+
* @var bool
1049+
*/
1050+
public function setExistsWithException($value)
1051+
{
1052+
return $this->setProperty("ExistsWithException", $value, true);
1053+
}
10401054
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
/**
4+
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class FileVersionBatchDeleteParameters extends ClientValue
10+
{
11+
/**
12+
* @var integer
13+
*/
14+
public $BatchDeleteMode;
15+
/**
16+
* @var integer
17+
*/
18+
public $DeleteOlderThanDays;
19+
/**
20+
* @var integer
21+
*/
22+
public $MajorVersionLimit;
23+
/**
24+
* @var integer
25+
*/
26+
public $MajorWithMinorVersionsLimit;
27+
}

0 commit comments

Comments
 (0)