Skip to content

Commit 23a9326

Browse files
committed
7.5.0 release
1 parent 1e6694f commit 23a9326

File tree

119 files changed

+2282
-950
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+2282
-950
lines changed

README.ja-jp.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,11 @@ SPClientCore は Microsoft Entra ID 2.0 認証をサポートします。
167167
- Remove-KshDocumentSetWelcomePageColumn
168168
- ドキュメント セット
169169
- Add-KshDocumentSet
170+
- ドキュメント
171+
- Add-KshDocument
170172
- ドライブ アイテム
171173
- Get-KshDriveItem
174+
- Get-KshSubDriveItem
172175
- ドライブ
173176
- Get-KshDrive
174177
- 外部共有
@@ -194,6 +197,7 @@ SPClientCore は Microsoft Entra ID 2.0 認証をサポートします。
194197
- Add-KshFolderColoring
195198
- Copy-KshFolder
196199
- Get-KshFolder
200+
- Get-KshSubFolder
197201
- Move-KshFolder
198202
- Remove-KshFolder
199203
- Set-KshFolder
@@ -208,6 +212,9 @@ SPClientCore は Microsoft Entra ID 2.0 認証をサポートします。
208212
- Remove-KshGroupMember
209213
- Set-KshGroup
210214
- Set-KshGroupOwner
215+
- 強調表示
216+
- Add-KshHighlight
217+
- Remove-KshHighlight
211218
- 画像
212219
- Save-KshImage
213220
- いいね
@@ -251,6 +258,9 @@ SPClientCore は Microsoft Entra ID 2.0 認証をサポートします。
251258
- ConvertTo-KshUniversalTime
252259
- Get-KshRegionalSettings
253260
- Set-KshRegionalSettings
261+
- Set-KshMultilingualEnabled
262+
- Add-KshSupportedUILanguage
263+
- Remove-KshSupportedUILanguage
254264
- アクセス許可
255265
- Add-KshRoleAssignment
256266
- Get-KshRoleAssignment
@@ -307,6 +317,7 @@ SPClientCore は Microsoft Entra ID 2.0 認証をサポートします。
307317
- Remove-KshView
308318
- Remove-KshViewColumn
309319
- Set-KshView
320+
- Copy-KshView
310321
- Webhooks
311322
- Add-KshSubscription
312323
- Get-KshSubscription

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,11 @@ If you enable MFA, you can log in with a web browser of another device. If you d
167167
- Remove-KshDocumentSetWelcomePageColumn
168168
- Document Sets
169169
- Add-KshDocumentSet
170+
- Documents
171+
- Add-KshDocument
170172
- Drive Items
171173
- Get-KshDriveItem
174+
- Get-KshSubDriveItem
172175
- Drives
173176
- Get-KshDrive
174177
- External Sharing
@@ -194,6 +197,7 @@ If you enable MFA, you can log in with a web browser of another device. If you d
194197
- Add-KshFolderColoring
195198
- Copy-KshFolder
196199
- Get-KshFolder
200+
- Get-KshSubFolder
197201
- Move-KshFolder
198202
- Remove-KshFolder
199203
- Set-KshFolder
@@ -208,6 +212,9 @@ If you enable MFA, you can log in with a web browser of another device. If you d
208212
- Remove-KshGroupMember
209213
- Set-KshGroup
210214
- Set-KshGroupOwner
215+
- Highlights
216+
- Add-KshHighlight
217+
- Remove-KshHighlight
211218
- Images
212219
- Save-KshImage
213220
- Likes
@@ -251,6 +258,9 @@ If you enable MFA, you can log in with a web browser of another device. If you d
251258
- ConvertTo-KshUniversalTime
252259
- Get-KshRegionalSettings
253260
- Set-KshRegionalSettings
261+
- Set-KshMultilingualEnabled
262+
- Add-KshSupportedUILanguage
263+
- Remove-KshSupportedUILanguage
254264
- Role Assignments
255265
- Add-KshRoleAssignment
256266
- Get-KshRoleAssignment
@@ -307,6 +317,7 @@ If you enable MFA, you can log in with a web browser of another device. If you d
307317
- Remove-KshView
308318
- Remove-KshViewColumn
309319
- Set-KshView
320+
- Copy-KshView
310321
- Webhooks
311322
- Add-KshSubscription
312323
- Get-KshSubscription

source/Karamem0.SPClientCore.Test/Commands/AddColumnBooleanCommandTests.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ public void InvokeCommand_AddItemToList_ShouldSucceed()
3535
}
3636
);
3737
var result1 = context.Runspace.InvokeCommand<List>(
38-
"Get-KshList",
38+
"Add-KshList",
3939
new Dictionary<string, object>()
4040
{
41-
["ListId"] = context.AppSettings["List1Id"]
41+
["Template"] = "GenericList",
42+
["Title"] = "Test List 0"
4243
}
4344
);
4445
var result2 = context.Runspace.InvokeCommand<Column>(
@@ -82,6 +83,13 @@ public void InvokeCommand_AddItemToList_ShouldSucceed()
8283
["Identity"] = result2[0]
8384
}
8485
);
86+
_ = context.Runspace.InvokeCommand<Guid>(
87+
"Remove-KshList",
88+
new Dictionary<string, object>()
89+
{
90+
["Identity"] = result1[0]
91+
}
92+
);
8593
var actual = result2[0];
8694
Assert.That(actual, Is.Not.Null);
8795
}

0 commit comments

Comments
 (0)