File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1- ## 0.0.15-dev4
1+ ## 0.0.15
22
33### Fixes
44
55* ** Model serialization with nested models** Logic updated to properly handle serializing pydantic models that have nested configs with secret values.
66* ** Sharepoint permission config requirement** The sharepoint connector was expecting the permission config, even though it should have been optional.
7+ * ** Sharepoint CLI permission params made optional
78
89### Enhancements
910
Original file line number Diff line number Diff line change 1- __version__ = "0.0.15-dev4 " # pragma: no cover
1+ __version__ = "0.0.15" # pragma: no cover
Original file line number Diff line number Diff line change @@ -60,13 +60,16 @@ class SharepointAccessConfig(AccessConfig):
6060
6161
6262class SharepointPermissionsConfig (BaseModel ):
63- permissions_application_id : str = Field (description = "Microsoft Graph API application id" )
64- permissions_tenant : str = Field (
63+ permissions_application_id : Optional [str ] = Field (
64+ default = None , description = "Microsoft Graph API application id"
65+ )
66+ permissions_tenant : Optional [str ] = Field (
67+ default = None ,
6568 description = "url to get permissions data within tenant." ,
6669 examples = ["https://contoso.onmicrosoft.com" ],
6770 )
68- permissions_client_cred : SecretStr = Field (
69- description = "Microsoft Graph API application credentials"
71+ permissions_client_cred : Optional [ SecretStr ] = Field (
72+ default = None , description = "Microsoft Graph API application credentials"
7073 )
7174 authority_url : Optional [SecretStr ] = Field (
7275 repr = False ,
You can’t perform that action at this time.
0 commit comments