win32more-Microsoft.WindowsAppSDK 0.6.1.7.250909003__py2.py3-none-any.whl → 0.6.1.8.250916003__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.

Files changed (25) hide show
  1. win32more/Microsoft/Foundation/__init__.py +1 -1
  2. win32more/Microsoft/UI/Content/__init__.py +10 -10
  3. win32more/Microsoft/UI/Input/__init__.py +43 -43
  4. win32more/Microsoft/UI/Xaml/__init__.py +2 -2
  5. win32more/Microsoft/Windows/AI/Foundation/__init__.py +46 -0
  6. win32more/Microsoft/Windows/AI/Imaging/__init__.py +36 -0
  7. win32more/Microsoft/Windows/AI/MachineLearning/__init__.py +122 -0
  8. win32more/Microsoft/Windows/AI/Text/__init__.py +238 -1
  9. win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py +2 -4
  10. win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +0 -21
  11. win32more/Microsoft/Windows/Foundation/__init__.py +220 -0
  12. win32more/Microsoft/Windows/Storage/Pickers/__init__.py +258 -0
  13. win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +8 -0
  14. win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
  15. win32more/appsdk/versioninfo.py +2 -2
  16. win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  17. win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  18. win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  19. win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  20. win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  21. win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  22. {win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info}/METADATA +2 -2
  23. {win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info}/RECORD +25 -21
  24. {win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +4 -2
  25. {win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info}/WHEEL +0 -0
@@ -0,0 +1,258 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.UI
4
+ import win32more.Microsoft.Windows.Storage.Pickers
5
+ import win32more.Windows.Foundation
6
+ import win32more.Windows.Foundation.Collections
7
+ class FileOpenPicker(ComPtr):
8
+ extends: IInspectable
9
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker
10
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FileOpenPicker'
11
+ def __init__(self, *args, **kwargs):
12
+ if kwargs:
13
+ super().__init__(**kwargs)
14
+ elif len(args) == 1:
15
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker.CreateInstance(*args))
16
+ else:
17
+ raise ValueError('no matched constructor')
18
+ @winrt_factorymethod
19
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker: ...
20
+ @winrt_mixinmethod
21
+ def get_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
22
+ @winrt_mixinmethod
23
+ def put_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
24
+ @winrt_mixinmethod
25
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
26
+ @winrt_mixinmethod
27
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
28
+ @winrt_mixinmethod
29
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> WinRT_String: ...
30
+ @winrt_mixinmethod
31
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: WinRT_String) -> Void: ...
32
+ @winrt_mixinmethod
33
+ def get_FileTypeFilter(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.Collections.IVector[WinRT_String]: ...
34
+ @winrt_mixinmethod
35
+ def PickSingleFileAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
36
+ @winrt_mixinmethod
37
+ def PickMultipleFilesAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]]: ...
38
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
39
+ FileTypeFilter = property(get_FileTypeFilter, None)
40
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
41
+ ViewMode = property(get_ViewMode, put_ViewMode)
42
+ class FileSavePicker(ComPtr):
43
+ extends: IInspectable
44
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker
45
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FileSavePicker'
46
+ def __init__(self, *args, **kwargs):
47
+ if kwargs:
48
+ super().__init__(**kwargs)
49
+ elif len(args) == 1:
50
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker.CreateInstance(*args))
51
+ else:
52
+ raise ValueError('no matched constructor')
53
+ @winrt_factorymethod
54
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker: ...
55
+ @winrt_mixinmethod
56
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
57
+ @winrt_mixinmethod
58
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
59
+ @winrt_mixinmethod
60
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
61
+ @winrt_mixinmethod
62
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
63
+ @winrt_mixinmethod
64
+ def get_FileTypeChoices(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, win32more.Windows.Foundation.Collections.IVector[WinRT_String]]: ...
65
+ @winrt_mixinmethod
66
+ def get_DefaultFileExtension(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
67
+ @winrt_mixinmethod
68
+ def put_DefaultFileExtension(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
69
+ @winrt_mixinmethod
70
+ def get_SuggestedFileName(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
71
+ @winrt_mixinmethod
72
+ def put_SuggestedFileName(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
73
+ @winrt_mixinmethod
74
+ def get_SuggestedFolder(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
75
+ @winrt_mixinmethod
76
+ def put_SuggestedFolder(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
77
+ @winrt_mixinmethod
78
+ def PickSaveFileAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
79
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
80
+ DefaultFileExtension = property(get_DefaultFileExtension, put_DefaultFileExtension)
81
+ FileTypeChoices = property(get_FileTypeChoices, None)
82
+ SuggestedFileName = property(get_SuggestedFileName, put_SuggestedFileName)
83
+ SuggestedFolder = property(get_SuggestedFolder, put_SuggestedFolder)
84
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
85
+ class FolderPicker(ComPtr):
86
+ extends: IInspectable
87
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker
88
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FolderPicker'
89
+ def __init__(self, *args, **kwargs):
90
+ if kwargs:
91
+ super().__init__(**kwargs)
92
+ elif len(args) == 1:
93
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FolderPicker.CreateInstance(*args))
94
+ else:
95
+ raise ValueError('no matched constructor')
96
+ @winrt_factorymethod
97
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFolderPickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FolderPicker: ...
98
+ @winrt_mixinmethod
99
+ def get_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
100
+ @winrt_mixinmethod
101
+ def put_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
102
+ @winrt_mixinmethod
103
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
104
+ @winrt_mixinmethod
105
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
106
+ @winrt_mixinmethod
107
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> WinRT_String: ...
108
+ @winrt_mixinmethod
109
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: WinRT_String) -> Void: ...
110
+ @winrt_mixinmethod
111
+ def PickSingleFolderAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFolderResult]: ...
112
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
113
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
114
+ ViewMode = property(get_ViewMode, put_ViewMode)
115
+ class IFileOpenPicker(ComPtr):
116
+ extends: IInspectable
117
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileOpenPicker'
118
+ _iid_ = Guid('{9d00f175-c783-51bd-8c93-fb63695d3abc}')
119
+ @winrt_commethod(6)
120
+ def get_ViewMode(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
121
+ @winrt_commethod(7)
122
+ def put_ViewMode(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
123
+ @winrt_commethod(8)
124
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
125
+ @winrt_commethod(9)
126
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
127
+ @winrt_commethod(10)
128
+ def get_CommitButtonText(self) -> WinRT_String: ...
129
+ @winrt_commethod(11)
130
+ def put_CommitButtonText(self, value: WinRT_String) -> Void: ...
131
+ @winrt_commethod(12)
132
+ def get_FileTypeFilter(self) -> win32more.Windows.Foundation.Collections.IVector[WinRT_String]: ...
133
+ @winrt_commethod(13)
134
+ def PickSingleFileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
135
+ @winrt_commethod(14)
136
+ def PickMultipleFilesAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]]: ...
137
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
138
+ FileTypeFilter = property(get_FileTypeFilter, None)
139
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
140
+ ViewMode = property(get_ViewMode, put_ViewMode)
141
+ class IFileOpenPickerFactory(ComPtr):
142
+ extends: IInspectable
143
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileOpenPickerFactory'
144
+ _iid_ = Guid('{315e86d7-d7a2-5d81-b379-7af78207b1af}')
145
+ @winrt_commethod(6)
146
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker: ...
147
+ class IFileSavePicker(ComPtr):
148
+ extends: IInspectable
149
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileSavePicker'
150
+ _iid_ = Guid('{79f1f4df-741b-59b2-aa06-fe9ac817b7dd}')
151
+ @winrt_commethod(6)
152
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
153
+ @winrt_commethod(7)
154
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
155
+ @winrt_commethod(8)
156
+ def get_CommitButtonText(self) -> WinRT_String: ...
157
+ @winrt_commethod(9)
158
+ def put_CommitButtonText(self, value: WinRT_String) -> Void: ...
159
+ @winrt_commethod(10)
160
+ def get_FileTypeChoices(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, win32more.Windows.Foundation.Collections.IVector[WinRT_String]]: ...
161
+ @winrt_commethod(11)
162
+ def get_DefaultFileExtension(self) -> WinRT_String: ...
163
+ @winrt_commethod(12)
164
+ def put_DefaultFileExtension(self, value: WinRT_String) -> Void: ...
165
+ @winrt_commethod(13)
166
+ def get_SuggestedFileName(self) -> WinRT_String: ...
167
+ @winrt_commethod(14)
168
+ def put_SuggestedFileName(self, value: WinRT_String) -> Void: ...
169
+ @winrt_commethod(15)
170
+ def get_SuggestedFolder(self) -> WinRT_String: ...
171
+ @winrt_commethod(16)
172
+ def put_SuggestedFolder(self, value: WinRT_String) -> Void: ...
173
+ @winrt_commethod(17)
174
+ def PickSaveFileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
175
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
176
+ DefaultFileExtension = property(get_DefaultFileExtension, put_DefaultFileExtension)
177
+ FileTypeChoices = property(get_FileTypeChoices, None)
178
+ SuggestedFileName = property(get_SuggestedFileName, put_SuggestedFileName)
179
+ SuggestedFolder = property(get_SuggestedFolder, put_SuggestedFolder)
180
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
181
+ class IFileSavePickerFactory(ComPtr):
182
+ extends: IInspectable
183
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileSavePickerFactory'
184
+ _iid_ = Guid('{2e256696-30b6-5a05-a8f5-c752db6dd268}')
185
+ @winrt_commethod(6)
186
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker: ...
187
+ class IFolderPicker(ComPtr):
188
+ extends: IInspectable
189
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFolderPicker'
190
+ _iid_ = Guid('{3ef0d1ca-97c6-5873-8ea2-02c450174290}')
191
+ @winrt_commethod(6)
192
+ def get_ViewMode(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
193
+ @winrt_commethod(7)
194
+ def put_ViewMode(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
195
+ @winrt_commethod(8)
196
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
197
+ @winrt_commethod(9)
198
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
199
+ @winrt_commethod(10)
200
+ def get_CommitButtonText(self) -> WinRT_String: ...
201
+ @winrt_commethod(11)
202
+ def put_CommitButtonText(self, value: WinRT_String) -> Void: ...
203
+ @winrt_commethod(12)
204
+ def PickSingleFolderAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFolderResult]: ...
205
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
206
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
207
+ ViewMode = property(get_ViewMode, put_ViewMode)
208
+ class IFolderPickerFactory(ComPtr):
209
+ extends: IInspectable
210
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFolderPickerFactory'
211
+ _iid_ = Guid('{e1550d89-b389-5886-8395-022b1588d6a8}')
212
+ @winrt_commethod(6)
213
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FolderPicker: ...
214
+ class IPickFileResult(ComPtr):
215
+ extends: IInspectable
216
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IPickFileResult'
217
+ _iid_ = Guid('{e6f2e3d6-7bb0-5d81-9e7d-6fd35a1f25ab}')
218
+ @winrt_commethod(6)
219
+ def get_Path(self) -> WinRT_String: ...
220
+ Path = property(get_Path, None)
221
+ class IPickFolderResult(ComPtr):
222
+ extends: IInspectable
223
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IPickFolderResult'
224
+ _iid_ = Guid('{6f7fd316-fe29-59d1-9343-c49cf5cde680}')
225
+ @winrt_commethod(6)
226
+ def get_Path(self) -> WinRT_String: ...
227
+ Path = property(get_Path, None)
228
+ class PickFileResult(ComPtr):
229
+ extends: IInspectable
230
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IPickFileResult
231
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.PickFileResult'
232
+ @winrt_mixinmethod
233
+ def get_Path(self: win32more.Microsoft.Windows.Storage.Pickers.IPickFileResult) -> WinRT_String: ...
234
+ Path = property(get_Path, None)
235
+ class PickFolderResult(ComPtr):
236
+ extends: IInspectable
237
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IPickFolderResult
238
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.PickFolderResult'
239
+ @winrt_mixinmethod
240
+ def get_Path(self: win32more.Microsoft.Windows.Storage.Pickers.IPickFolderResult) -> WinRT_String: ...
241
+ Path = property(get_Path, None)
242
+ class PickerLocationId(Enum, Int32):
243
+ DocumentsLibrary = 0
244
+ ComputerFolder = 1
245
+ Desktop = 2
246
+ Downloads = 3
247
+ MusicLibrary = 5
248
+ PicturesLibrary = 6
249
+ VideosLibrary = 7
250
+ Objects3D = 8
251
+ Unspecified = 9
252
+ class PickerViewMode(Enum, Int32):
253
+ List = 0
254
+ Thumbnail = 1
255
+ StoragePickersContract: UInt32 = 65544
256
+
257
+
258
+ make_ready(__name__)
@@ -89,6 +89,8 @@ class FeedManager(ComPtr):
89
89
  def SendMessageToContent(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager2, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, message: WinRT_String) -> Void: ...
90
90
  @winrt_mixinmethod
91
91
  def TryShowAnnouncement(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager2, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcement: win32more.Microsoft.Windows.Widgets.Notifications.FeedAnnouncement) -> Void: ...
92
+ @winrt_mixinmethod
93
+ def TryRemoveAnnouncementById(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager3, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcementId: WinRT_String) -> Void: ...
92
94
  @winrt_classmethod
93
95
  def GetDefault(cls: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManagerStatics) -> win32more.Microsoft.Windows.Widgets.Feeds.Providers.FeedManager: ...
94
96
  class FeedMessageReceivedArgs(ComPtr):
@@ -288,6 +290,12 @@ class IFeedManager2(ComPtr):
288
290
  def SendMessageToContent(self, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, message: WinRT_String) -> Void: ...
289
291
  @winrt_commethod(7)
290
292
  def TryShowAnnouncement(self, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcement: win32more.Microsoft.Windows.Widgets.Notifications.FeedAnnouncement) -> Void: ...
293
+ class IFeedManager3(ComPtr):
294
+ extends: IInspectable
295
+ _classid_ = 'Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager3'
296
+ _iid_ = Guid('{a6af915b-0cdc-46f1-a4d6-10d8c644984a}')
297
+ @winrt_commethod(6)
298
+ def TryRemoveAnnouncementById(self, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcementId: WinRT_String) -> Void: ...
291
299
  class IFeedManagerStatics(ComPtr):
292
300
  extends: IInspectable
293
301
  _classid_ = 'Microsoft.Windows.Widgets.Feeds.Providers.IFeedManagerStatics'
@@ -1,7 +1,7 @@
1
1
  from __future__ import annotations
2
2
  from win32more.winrt.prelude import *
3
3
  import win32more.Microsoft.Windows.Widgets
4
- WidgetContract: UInt32 = 720896
4
+ WidgetContract: UInt32 = 786432
5
5
  class WidgetSize(Enum, Int32):
6
6
  Small = 0
7
7
  Medium = 1
@@ -1,3 +1,3 @@
1
- WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010007
1
+ WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010008
2
2
  WINDOWSAPPSDK_RELEASE_VERSION_SHORTTAG_W = ''
3
- WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1B58026908370000
3
+ WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1F400271014A0000
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: win32more-Microsoft.WindowsAppSDK
3
- Version: 0.6.1.7.250909003
3
+ Version: 0.6.1.8.250916003
4
4
  License-File: LICENSE (Microsoft.WindowsAppSDK).txt
5
- Requires-Dist: win32more-microsoft-web-webview2<0.7,>=0.6.1.0.2903.40
5
+ Requires-Dist: win32more-microsoft-web-webview2<0.7,>=0.6.1.0.3179.45
6
6
  Requires-Dist: win32more==0.6.*
@@ -1,4 +1,4 @@
1
- win32more/Microsoft/Foundation/__init__.py,sha256=feBJ9L-32cBuaZcOqTcSAlphKPCuBuS2Pk8wjCUBwjQ,179
1
+ win32more/Microsoft/Foundation/__init__.py,sha256=POmlmDLcGimhp11WKTU1ViBvH6eyIGRmPhIfOHgp-2w,179
2
2
  win32more/Microsoft/Graphics/DirectX/__init__.py,sha256=RsgWf1DQuqYiIvZ4JPLekn6H_ag9dp3XChNM4GrxERw,4378
3
3
  win32more/Microsoft/Graphics/Display/__init__.py,sha256=ZizE6Ik8esmKDt_zHH_T7XPq96jn4_mGohBZoWi3jiQ,12295
4
4
  win32more/Microsoft/Graphics/Imaging/__init__.py,sha256=O3stCuvWAQk4p-UKAVSqr_Lb9oNP9kIsjh2r_J_RhcI,4312
@@ -11,15 +11,15 @@ win32more/Microsoft/UI/Composition/Effects/__init__.py,sha256=T0eSAqOIUArUCv0-yB
11
11
  win32more/Microsoft/UI/Composition/Interactions/__init__.py,sha256=M8IizRfTzoHVoh1UhjdljqNgEr-CE9TIogYUEpcUvww,74403
12
12
  win32more/Microsoft/UI/Composition/Scenes/__init__.py,sha256=t56JUkbf-_1clPM6cwMTXQdszniwyIIUKfBQbG4qXus,47635
13
13
  win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py,sha256=LgNvhL3_ISUqWaH3uKe0srZH2rYty0lflvtl4Cxs80c,24185
14
- win32more/Microsoft/UI/Content/__init__.py,sha256=kxubQCWjP-W4167kEX5kMVktk024wsBMXbPBT_kdZzY,104780
14
+ win32more/Microsoft/UI/Content/__init__.py,sha256=xBteXwaSC3GVkuUCksb2hG_9vjJxTFo_sPS0w41Tcgo,104780
15
15
  win32more/Microsoft/UI/Dispatching/__init__.py,sha256=M87ewZVfWQbTgmSsU9ba1lKm56uokGC6Goc7uOfOTP4,15736
16
- win32more/Microsoft/UI/Input/__init__.py,sha256=P8boioZuDNYmvpWBce1yF69Ty9crFfXpQWDHR_Kazzw,142454
16
+ win32more/Microsoft/UI/Input/__init__.py,sha256=uevK36hfVU5qnRG--oj8qRePHomER6DLjhg5m4ojks8,142454
17
17
  win32more/Microsoft/UI/Input/DragDrop/__init__.py,sha256=2iMK_E0nrYwqDefwYZ670VPYMqi2tP7u48gcS62Iza0,15463
18
18
  win32more/Microsoft/UI/Input/Interop/__init__.py,sha256=0gFhJRIBX_xacYnnBYEDPI9DbSnxUJtgxKQg9qSBlYg,934
19
19
  win32more/Microsoft/UI/System/__init__.py,sha256=xy-amtK-mT_i8ZGnIVqhwz7aomI6IHDsjorXXtIRXo0,2589
20
20
  win32more/Microsoft/UI/Text/__init__.py,sha256=XeqmlNr39iOY4JiVUZgN7iQv3f4uEcmBP8zVLwqxRsQ,54100
21
21
  win32more/Microsoft/UI/Windowing/__init__.py,sha256=N5lbddj2PzgP8bfxay4KSbgn7w83hwrR7reIRJ5jsBs,63348
22
- win32more/Microsoft/UI/Xaml/__init__.py,sha256=BghIiRVJ6GZ1ur_Ys1RrBdfC9EJjPMvNWS_-qRFBo48,401204
22
+ win32more/Microsoft/UI/Xaml/__init__.py,sha256=Mg7Tkugk1gQ86PB1mPianT9hUyDlqnpnK_1YowvsOww,401204
23
23
  win32more/Microsoft/UI/Xaml/Automation/__init__.py,sha256=ZnlDh5CD4SVUw-lxEN2kXaL6m5uWeOwgFoNrFcMKbug,115915
24
24
  win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py,sha256=4pp45QkHrJkUptgaFIACKn_8rC6wwu-iYN8s4Okn-kM,245594
25
25
  win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py,sha256=Vew552Fi4dXmuMzc62RrbptqQQz6gMDBWbLNCArZZww,25356
@@ -44,38 +44,42 @@ win32more/Microsoft/UI/Xaml/Shapes/__init__.py,sha256=7RWAUodNJyWTjvZu5dDKb5cV2f
44
44
  win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py,sha256=CsgOE_svpH_moSFAUCQFZWaxzZeeAEQ-p1w-DNLKQBQ,2211
45
45
  win32more/Microsoft/Windows/AI/__init__.py,sha256=RRJ4SF5yl0h3aVsMmD1snfZp7kJYlaFmQhI4d8wBuxc,2238
46
46
  win32more/Microsoft/Windows/AI/ContentSafety/__init__.py,sha256=c1eVwgUOB2TFaUxUOpvokESEFEL2JKTwJkpF8ww591c,14331
47
- win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=xLqhS6QoB6-wmFNQprror6mV9J_oMDQajRXy8_ygdkc,22759
48
- win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=-clYHCM9vYjLOdY1lVInvGf0R7WvuwTHKkv_hRp3qKc,15674
47
+ win32more/Microsoft/Windows/AI/Foundation/__init__.py,sha256=U31CdOMucSoanrPjffb54W5yjfrgW1mEtdfO1er_QO8,2319
48
+ win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=2uz8BmFv6dsPZd1057eCsG_tvjCbvgQuB_mQuTuC4h8,25809
49
+ win32more/Microsoft/Windows/AI/MachineLearning/__init__.py,sha256=wSrI1QSmdPVU3Z7vBKnqJjdstjyk9NrkVIeFhYqdTOA,7850
50
+ win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=GDIL5NJFEitHPi_ckhkMsPlHFet_WmQGcUQw3GaNQnk,34749
49
51
  win32more/Microsoft/Windows/AppLifecycle/__init__.py,sha256=HMKTbKGoWfTfA0cyqA6_mcosViTmpklmpwiKWgok46w,10183
50
52
  win32more/Microsoft/Windows/AppNotifications/__init__.py,sha256=tZCBxF_LI0Am2HeKABub75eIeORYZ94Zi_hnCVAh174,21474
51
53
  win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py,sha256=XutDaU0tB0KsbeGVIiU48gRlui1cNHzer3vmMHy-KWM,44205
52
54
  win32more/Microsoft/Windows/ApplicationModel/Background/__init__.py,sha256=HrM0c0MTgTELHbqDLuy5hUqUD0EuC3X919RjZwFvQao,4319
53
- win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py,sha256=WBUH7AwSWh1FEN3nilRYLJCSMUx6VrQl-J3b7oqRN24,1557
55
+ win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py,sha256=IImZTq9bg1p7ZpH9sZqGljsGzZi6iYiDlh30vhxrqkU,1399
54
56
  win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py,sha256=a1GAeUoyM8sSLm59sZsafJIypa3w8qJPo66uZB8U-MI,17689
55
57
  win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py,sha256=dTwfMSyiUeU5-ZNi-WHJYAhzrzLxTPnSYvtcWvqQqDg,22488
56
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py,sha256=zlipTLYDaNf1UrfVBsyVkl38In2LCgWEvhCNXUHQ_EM,15858
58
+ win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py,sha256=eTh7xzDwPp8GGRpSVZkncE1yYen6O1DapzBhQ1bN-DY,14794
57
59
  win32more/Microsoft/Windows/BadgeNotifications/__init__.py,sha256=i2OIEzaI2HEdaCgZUub-Er_UcdZvQH_7SStFYf5HavY,2562
60
+ win32more/Microsoft/Windows/Foundation/__init__.py,sha256=Z26vE9k6TQMGQR8Ikloqaolf3CEy_ZoPC-pc_y8TUJY,18582
58
61
  win32more/Microsoft/Windows/Globalization/__init__.py,sha256=4hCvka6EU6AxoBHNI-2p_D6XhaunVSk2bYLQeplBeLE,2345
59
62
  win32more/Microsoft/Windows/Management/Deployment/__init__.py,sha256=i-bdvqompyuE7c_8Upl6tTknp9FojCvJJK3qLNa82YQ,97397
60
63
  win32more/Microsoft/Windows/Media/Capture/__init__.py,sha256=z_BWkCbTstLRzeATIlRnlJpuPuNQH_mqHIp3G_cvM5E,12395
61
64
  win32more/Microsoft/Windows/PushNotifications/__init__.py,sha256=2pXcCusNn76F3Bt9f7hpLBacTVuAtkSsOVcyWQAgiSE,9672
62
65
  win32more/Microsoft/Windows/Security/AccessControl/__init__.py,sha256=bEplGy_jueooNgb8m5TGHEKVkTXWBbYRdgLcNtTI8DE,1938
63
66
  win32more/Microsoft/Windows/Storage/__init__.py,sha256=_Xqx6zTdbNC9qaDJO02_f0yExmMEdNiRG5LxqJPZR3A,10830
67
+ win32more/Microsoft/Windows/Storage/Pickers/__init__.py,sha256=m-oX7Wcffn1D6HSKaggf4M-twbu3ezUf6cwzP2F9WKM,16553
64
68
  win32more/Microsoft/Windows/System/__init__.py,sha256=nfm68OJeDJp-GlH9RCJIcTpISqMBB9GElf_MJ0Nuuv0,4558
65
69
  win32more/Microsoft/Windows/System/Power/__init__.py,sha256=XfShesmPKNrekgLD_KnEWiKZdk6t0btIMqWSYop_ONI,16057
66
- win32more/Microsoft/Windows/Widgets/__init__.py,sha256=w8gf_fUKpFYkgY_tMqCvBInHEgiRfv-5-9ND1Jny19Q,256
67
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=dr9Wr65mdTMxK-7x7Z_82leGY5pWEbMtCOT0HL4zBGQ,28878
70
+ win32more/Microsoft/Windows/Widgets/__init__.py,sha256=RKNYYxZMiEFDaxrAdrk8uKzMzeWsZL9Wp_F8DwFvvfU,256
71
+ win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=2dI_Red5_iR8BCCjSc85lT_WM5f9Olcv-Xda1FS10AY,29498
68
72
  win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=NWMyMMYXv845dIRW2MnlnXBfOlz6nc2JaxuC-S9Ab_g,12572
69
73
  win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=wwvQbBn8lovXWtpiLVauK_WJThmmGcicmmW7eIB1ROw,32409
70
74
  win32more/Microsoft/Windows/Workloads/__init__.py,sha256=6jbfkZ9ZAvZmVRIJWVGlC3bNFW1QVu46l7njIH1F5fA,280
71
- win32more/appsdk/versioninfo.py,sha256=oSTTtqXef_yoPWH3tdEoL7ZV7ylkcf41QFkjC6jnW_c,149
72
- win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=3m9h44Uz2FMcLFGq9XZLX18idtTqsCt1UY28YKk4Dds,72232
73
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=cHl1K-NIQR8LiJDHIOEJJyt7U-ExLl9Ua6MoPabCIXM,388664
74
- win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=3TfagGzOdpJw41huroxTrsYYZpzpSJK5e0Or6-dczto,79904
75
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=47xkAHpEcdr0-NAoe9bP5_Bl8KImRYluREJgh2MPY08,396328
76
- win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=zgVDJFIezL0KURx9kYoiY5zBZJ4rlJoKohwGhkkLuQE,59960
77
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=J1BGEX-eoiCfGTvle99WUnJHrkUwNKCDXMZE3vjp97E,348216
78
- win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info/METADATA,sha256=czM3cYIC4ZsZEOh5YBWm4W9_0dufDWEDM6a_xEYkH7w,243
79
- win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
80
- win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=-e0AFHYEvcSMfmLRJ9cyRXgc5TkDzvnDhj-KfvgSDMI,12402
81
- win32more_microsoft_windowsappsdk-0.6.1.7.250909003.dist-info/RECORD,,
75
+ win32more/appsdk/versioninfo.py,sha256=9Iz9oOy9t4CpdbnWBsdDjIAd5qG1UmnW7tqkpw4Ppz8,149
76
+ win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=7yJrrfq_O6St__WbgvAXLS9cvoRXdQ61zp0yJYMqFHE,81952
77
+ win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=flQneEX8KbD7wlND_w-DxhJVGoGhIgMnhze4In1WPIY,392736
78
+ win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=pzKgoH87ZG8qYfehDCFSnn5H7yqgSqNiDc0xC0jdomE,87608
79
+ win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=DxeBwGgirYV4J-H38GBJqWhscZCMmfD_Lnh7apky5mU,399928
80
+ win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=nV79iCGYjBe3NuPZNUeGsHxfOE73-VUA3t4tkVIHpHY,65576
81
+ win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=onG0CPBUkJXSlPGngLZB1Y7SBdxxgPjNP6mT_th7X_k,351272
82
+ win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info/METADATA,sha256=cG1m4ir4eVrncr5FpMVZ4H_h0C0SjAMLd8GDfz65yyI,243
83
+ win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
84
+ win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=WxHmNHdW5A_gJ0vAjJf4kgG5Tw1QGBoJoA8fR0CEBQE,12637
85
+ win32more_microsoft_windowsappsdk-0.6.1.8.250916003.dist-info/RECORD,,
@@ -24,9 +24,11 @@ These license terms are an agreement between you and Microsoft Corporation (or o
24
24
 
25
25
  a) Distribution Rights. The code and test files described below are distributable if included with the software.
26
26
 
27
- i. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
27
+ i. Any files that are binplaced with your application by the WindowsAppSDK NuGet package are, by definition, permitted to be redistributed. This applies to both framework package dependent and self-contained deployments.
28
28
 
29
- ii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
29
+ ii. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
30
+
31
+ iii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
30
32
 
31
33
  b) Distribution Requirements. For any code you distribute, you must:
32
34