win32more-Microsoft.WindowsAppSDK 0.6.1.6.240829007__py2.py3-none-any.whl → 0.6.1.6.241106002__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.

@@ -3,6 +3,8 @@ from win32more.winrt.prelude import *
3
3
  import win32more.Microsoft.Windows.Widgets
4
4
  import win32more.Microsoft.Windows.Widgets.Providers
5
5
  import win32more.Windows.Foundation
6
+ import win32more.Windows.Foundation.Collections
7
+ import win32more.Windows.Storage.Streams
6
8
  class IWidgetActionInvokedArgs(ComPtr):
7
9
  extends: IInspectable
8
10
  _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetActionInvokedArgs'
@@ -105,12 +107,28 @@ class IWidgetManager(ComPtr):
105
107
  def GetWidgetInfos(self) -> ReceiveArray[win32more.Microsoft.Windows.Widgets.Providers.WidgetInfo]: ...
106
108
  @winrt_commethod(10)
107
109
  def DeleteWidget(self, widgetId: WinRT_String) -> Void: ...
110
+ class IWidgetManager2(ComPtr):
111
+ extends: IInspectable
112
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetManager2'
113
+ _iid_ = Guid('{55c65a27-8845-406c-9ee1-1e79f0556bef}')
114
+ @winrt_commethod(6)
115
+ def SendMessageToContent(self, widgetId: WinRT_String, message: WinRT_String) -> Void: ...
108
116
  class IWidgetManagerStatics(ComPtr):
109
117
  extends: IInspectable
110
118
  _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetManagerStatics'
111
119
  _iid_ = Guid('{7f233b06-28e5-5e2b-8c04-a4fa747c28c7}')
112
120
  @winrt_commethod(6)
113
121
  def GetDefault(self) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetManager: ...
122
+ class IWidgetMessageReceivedArgs(ComPtr):
123
+ extends: IInspectable
124
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetMessageReceivedArgs'
125
+ _iid_ = Guid('{2261cb2b-c741-5f96-9adb-fb3a7667bcb6}')
126
+ @winrt_commethod(6)
127
+ def get_WidgetContext(self) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetContext: ...
128
+ @winrt_commethod(7)
129
+ def get_Message(self) -> WinRT_String: ...
130
+ Message = property(get_Message, None)
131
+ WidgetContext = property(get_WidgetContext, None)
114
132
  class IWidgetProvider(ComPtr):
115
133
  extends: IInspectable
116
134
  _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetProvider'
@@ -145,6 +163,77 @@ class IWidgetProviderErrors(ComPtr):
145
163
  _iid_ = Guid('{90c1b5f0-0d3a-4ac6-abb7-c97b367b8fcc}')
146
164
  @winrt_commethod(6)
147
165
  def OnErrorInfoReported(self, args: win32more.Microsoft.Windows.Widgets.Providers.WidgetErrorInfoReportedArgs) -> Void: ...
166
+ class IWidgetProviderMessage(ComPtr):
167
+ extends: IInspectable
168
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetProviderMessage'
169
+ _iid_ = Guid('{ea4dc186-9e24-4b35-a5ef-a9f5df72d6ac}')
170
+ @winrt_commethod(6)
171
+ def OnMessageReceived(self, args: win32more.Microsoft.Windows.Widgets.Providers.WidgetMessageReceivedArgs) -> Void: ...
172
+ class IWidgetResourceProvider(ComPtr):
173
+ extends: IInspectable
174
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetResourceProvider'
175
+ _iid_ = Guid('{dcf328c0-012c-40f5-bb28-3a1c714d027d}')
176
+ @winrt_commethod(6)
177
+ def OnResourceRequested(self, args: win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceRequestedArgs) -> Void: ...
178
+ class IWidgetResourceRequest(ComPtr):
179
+ extends: IInspectable
180
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest'
181
+ _iid_ = Guid('{113d249f-82d9-57cb-8cea-9a5291f2fe22}')
182
+ @winrt_commethod(6)
183
+ def get_Uri(self) -> WinRT_String: ...
184
+ @winrt_commethod(7)
185
+ def get_Method(self) -> WinRT_String: ...
186
+ @winrt_commethod(8)
187
+ def put_Method(self, value: WinRT_String) -> Void: ...
188
+ @winrt_commethod(9)
189
+ def get_Content(self) -> win32more.Windows.Storage.Streams.IRandomAccessStreamReference: ...
190
+ @winrt_commethod(10)
191
+ def put_Content(self, value: win32more.Windows.Storage.Streams.IRandomAccessStreamReference) -> Void: ...
192
+ @winrt_commethod(11)
193
+ def get_Headers(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
194
+ Content = property(get_Content, put_Content)
195
+ Headers = property(get_Headers, None)
196
+ Method = property(get_Method, put_Method)
197
+ Uri = property(get_Uri, None)
198
+ class IWidgetResourceRequestedArgs(ComPtr):
199
+ extends: IInspectable
200
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs'
201
+ _iid_ = Guid('{2bb30f4d-0166-58e3-aaf6-31b2ae970bcd}')
202
+ @winrt_commethod(6)
203
+ def get_WidgetContext(self) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetContext: ...
204
+ @winrt_commethod(7)
205
+ def get_Request(self) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceRequest: ...
206
+ @winrt_commethod(8)
207
+ def get_Response(self) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse: ...
208
+ @winrt_commethod(9)
209
+ def put_Response(self, value: win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse) -> Void: ...
210
+ @winrt_commethod(10)
211
+ def GetDeferral(self) -> win32more.Windows.Foundation.Deferral: ...
212
+ Request = property(get_Request, None)
213
+ Response = property(get_Response, put_Response)
214
+ WidgetContext = property(get_WidgetContext, None)
215
+ class IWidgetResourceResponse(ComPtr):
216
+ extends: IInspectable
217
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetResourceResponse'
218
+ _iid_ = Guid('{03a2d32c-2e9e-54a3-b084-1479d5060f80}')
219
+ @winrt_commethod(6)
220
+ def get_Content(self) -> win32more.Windows.Storage.Streams.IRandomAccessStreamReference: ...
221
+ @winrt_commethod(7)
222
+ def get_Headers(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
223
+ @winrt_commethod(8)
224
+ def get_ReasonPhrase(self) -> WinRT_String: ...
225
+ @winrt_commethod(9)
226
+ def get_StatusCode(self) -> Int32: ...
227
+ Content = property(get_Content, None)
228
+ Headers = property(get_Headers, None)
229
+ ReasonPhrase = property(get_ReasonPhrase, None)
230
+ StatusCode = property(get_StatusCode, None)
231
+ class IWidgetResourceResponseFactory(ComPtr):
232
+ extends: IInspectable
233
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetResourceResponseFactory'
234
+ _iid_ = Guid('{08881ef1-a78a-5804-b070-9153a8657f85}')
235
+ @winrt_commethod(6)
236
+ def CreateInstance(self, content: win32more.Windows.Storage.Streams.IRandomAccessStreamReference, reasonPhrase: WinRT_String, statusCode: Int32) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse: ...
148
237
  class IWidgetUpdateRequestOptions(ComPtr):
149
238
  extends: IInspectable
150
239
  _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions'
@@ -282,8 +371,82 @@ class WidgetManager(ComPtr):
282
371
  def GetWidgetInfos(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetManager) -> ReceiveArray[win32more.Microsoft.Windows.Widgets.Providers.WidgetInfo]: ...
283
372
  @winrt_mixinmethod
284
373
  def DeleteWidget(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetManager, widgetId: WinRT_String) -> Void: ...
374
+ @winrt_mixinmethod
375
+ def SendMessageToContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetManager2, widgetId: WinRT_String, message: WinRT_String) -> Void: ...
285
376
  @winrt_classmethod
286
377
  def GetDefault(cls: win32more.Microsoft.Windows.Widgets.Providers.IWidgetManagerStatics) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetManager: ...
378
+ class WidgetMessageReceivedArgs(ComPtr):
379
+ extends: IInspectable
380
+ default_interface: win32more.Microsoft.Windows.Widgets.Providers.IWidgetMessageReceivedArgs
381
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.WidgetMessageReceivedArgs'
382
+ @winrt_mixinmethod
383
+ def get_WidgetContext(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetMessageReceivedArgs) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetContext: ...
384
+ @winrt_mixinmethod
385
+ def get_Message(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetMessageReceivedArgs) -> WinRT_String: ...
386
+ Message = property(get_Message, None)
387
+ WidgetContext = property(get_WidgetContext, None)
388
+ class WidgetResourceRequest(ComPtr):
389
+ extends: IInspectable
390
+ default_interface: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest
391
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.WidgetResourceRequest'
392
+ @winrt_mixinmethod
393
+ def get_Uri(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest) -> WinRT_String: ...
394
+ @winrt_mixinmethod
395
+ def get_Method(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest) -> WinRT_String: ...
396
+ @winrt_mixinmethod
397
+ def put_Method(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest, value: WinRT_String) -> Void: ...
398
+ @winrt_mixinmethod
399
+ def get_Content(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest) -> win32more.Windows.Storage.Streams.IRandomAccessStreamReference: ...
400
+ @winrt_mixinmethod
401
+ def put_Content(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest, value: win32more.Windows.Storage.Streams.IRandomAccessStreamReference) -> Void: ...
402
+ @winrt_mixinmethod
403
+ def get_Headers(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequest) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
404
+ Content = property(get_Content, put_Content)
405
+ Headers = property(get_Headers, None)
406
+ Method = property(get_Method, put_Method)
407
+ Uri = property(get_Uri, None)
408
+ class WidgetResourceRequestedArgs(ComPtr):
409
+ extends: IInspectable
410
+ default_interface: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs
411
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.WidgetResourceRequestedArgs'
412
+ @winrt_mixinmethod
413
+ def get_WidgetContext(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetContext: ...
414
+ @winrt_mixinmethod
415
+ def get_Request(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceRequest: ...
416
+ @winrt_mixinmethod
417
+ def get_Response(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse: ...
418
+ @winrt_mixinmethod
419
+ def put_Response(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs, value: win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse) -> Void: ...
420
+ @winrt_mixinmethod
421
+ def GetDeferral(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceRequestedArgs) -> win32more.Windows.Foundation.Deferral: ...
422
+ Request = property(get_Request, None)
423
+ Response = property(get_Response, put_Response)
424
+ WidgetContext = property(get_WidgetContext, None)
425
+ class WidgetResourceResponse(ComPtr):
426
+ extends: IInspectable
427
+ default_interface: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceResponse
428
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.WidgetResourceResponse'
429
+ def __init__(self, *args, **kwargs):
430
+ if kwargs:
431
+ super().__init__(**kwargs)
432
+ elif len(args) == 3:
433
+ super().__init__(move=win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse.CreateInstance(*args))
434
+ else:
435
+ raise ValueError('no matched constructor')
436
+ @winrt_factorymethod
437
+ def CreateInstance(cls: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceResponseFactory, content: win32more.Windows.Storage.Streams.IRandomAccessStreamReference, reasonPhrase: WinRT_String, statusCode: Int32) -> win32more.Microsoft.Windows.Widgets.Providers.WidgetResourceResponse: ...
438
+ @winrt_mixinmethod
439
+ def get_Content(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceResponse) -> win32more.Windows.Storage.Streams.IRandomAccessStreamReference: ...
440
+ @winrt_mixinmethod
441
+ def get_Headers(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceResponse) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
442
+ @winrt_mixinmethod
443
+ def get_ReasonPhrase(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceResponse) -> WinRT_String: ...
444
+ @winrt_mixinmethod
445
+ def get_StatusCode(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetResourceResponse) -> Int32: ...
446
+ Content = property(get_Content, None)
447
+ Headers = property(get_Headers, None)
448
+ ReasonPhrase = property(get_ReasonPhrase, None)
449
+ StatusCode = property(get_StatusCode, None)
287
450
  class _WidgetUpdateRequestOptions_Meta_(ComPtr.__class__):
288
451
  pass
289
452
  class WidgetUpdateRequestOptions(ComPtr, metaclass=_WidgetUpdateRequestOptions_Meta_):
@@ -1,3 +1,3 @@
1
1
  WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010006
2
2
  WINDOWSAPPSDK_RELEASE_VERSION_SHORTTAG_W = ''
3
- WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x177000F200650000
3
+ WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x17700137000D0000
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: win32more-Microsoft.WindowsAppSDK
3
- Version: 0.6.1.6.240829007
3
+ Version: 0.6.1.6.241106002
4
4
  License-File: LICENSE (Microsoft.WindowsAppSDK).txt
5
5
  Requires-Dist: win32more-microsoft-web-webview2<0.7,>=0.6.1.0.2651.64
6
6
  Requires-Dist: win32more==0.6.*
@@ -56,12 +56,12 @@ win32more/Microsoft/Windows/System/Power/__init__.py,sha256=XfShesmPKNrekgLD_KnE
56
56
  win32more/Microsoft/Windows/Widgets/__init__.py,sha256=6iUBlbaakgNWiSrqGLyYebK82sJuMZYMtcN3FFQ9KPI,256
57
57
  win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=dr9Wr65mdTMxK-7x7Z_82leGY5pWEbMtCOT0HL4zBGQ,28878
58
58
  win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=NWMyMMYXv845dIRW2MnlnXBfOlz6nc2JaxuC-S9Ab_g,12572
59
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=h8FG64z9bp7yGSFSJ4eHEplrKWhXTjZPjTf8I4GZEyM,19097
60
- win32more/appsdk/versioninfo.py,sha256=UswR-EvaRRWG00fu9CMJF_cg1up8PNNyuHyIZ7TqXsI,149
61
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=Wq7XOEmptXgOkIcUO-6UXfGYJ7W57VnWuS3bcn_yk3w,387128
62
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=DClVtjGZLBQ9bWzmr6o49cF_tBthmlt8HbaPXICIFoM,386080
63
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=I7ED1OKJ8WI54dOwPzcn88tSeCvwa6uFmJ2TTNJJU18,346184
64
- win32more_microsoft_windowsappsdk-0.6.1.6.240829007.dist-info/METADATA,sha256=8PQBV9nPAPDlrb5CtDzEv5_ys26L-6OXANHcFm2wem8,243
65
- win32more_microsoft_windowsappsdk-0.6.1.6.240829007.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
66
- win32more_microsoft_windowsappsdk-0.6.1.6.240829007.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=s-4tv980OTZQta_MSYgXPrBvs8-5SQYFj3byRJTfD9w,12291
67
- win32more_microsoft_windowsappsdk-0.6.1.6.240829007.dist-info/RECORD,,
59
+ win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=dhVvK0_r9WetN6f3DD0b9vNr-hAjovuANNvdsKhDwlQ,29475
60
+ win32more/appsdk/versioninfo.py,sha256=h20TB9_xKdz9SVThVHOxNldPk4KWafbCTDa4b9Dh2RI,149
61
+ win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=xVcA6ZCd0iG4Xg5wH0DiUd7w2qGnIdpOLVA3wQpEKLk,387120
62
+ win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=HetxX11aF6-NL6tk1YnmmVX_WvM-ySX8gqdmH7xIrhA,386104
63
+ win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=5sapsCOnh4Pxccu7TOVvxaOzb5FcqzVH7sDehmXnWSE,346184
64
+ win32more_microsoft_windowsappsdk-0.6.1.6.241106002.dist-info/METADATA,sha256=JRv0Yai5pBoMIBqwN9PfWKvKlRqLmg2d0HE0g9TbELs,243
65
+ win32more_microsoft_windowsappsdk-0.6.1.6.241106002.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
66
+ win32more_microsoft_windowsappsdk-0.6.1.6.241106002.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=s-4tv980OTZQta_MSYgXPrBvs8-5SQYFj3byRJTfD9w,12291
67
+ win32more_microsoft_windowsappsdk-0.6.1.6.241106002.dist-info/RECORD,,