azure-functions-durable 1.2.9__py3-none-any.whl → 1.2.10__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.
- azure/durable_functions/__init__.py +81 -81
- azure/durable_functions/constants.py +9 -9
- azure/durable_functions/decorators/__init__.py +3 -3
- azure/durable_functions/decorators/durable_app.py +249 -249
- azure/durable_functions/decorators/metadata.py +109 -109
- azure/durable_functions/entity.py +125 -125
- azure/durable_functions/models/DurableEntityContext.py +201 -201
- azure/durable_functions/models/DurableHttpRequest.py +58 -58
- azure/durable_functions/models/DurableOrchestrationBindings.py +66 -66
- azure/durable_functions/models/DurableOrchestrationClient.py +781 -781
- azure/durable_functions/models/DurableOrchestrationContext.py +722 -707
- azure/durable_functions/models/DurableOrchestrationStatus.py +156 -156
- azure/durable_functions/models/EntityStateResponse.py +23 -23
- azure/durable_functions/models/FunctionContext.py +7 -7
- azure/durable_functions/models/OrchestrationRuntimeStatus.py +32 -32
- azure/durable_functions/models/OrchestratorState.py +117 -116
- azure/durable_functions/models/PurgeHistoryResult.py +33 -33
- azure/durable_functions/models/ReplaySchema.py +8 -8
- azure/durable_functions/models/RetryOptions.py +69 -69
- azure/durable_functions/models/RpcManagementOptions.py +86 -86
- azure/durable_functions/models/Task.py +426 -426
- azure/durable_functions/models/TaskOrchestrationExecutor.py +346 -336
- azure/durable_functions/models/TokenSource.py +56 -56
- azure/durable_functions/models/__init__.py +24 -24
- azure/durable_functions/models/actions/Action.py +23 -23
- azure/durable_functions/models/actions/ActionType.py +18 -18
- azure/durable_functions/models/actions/CallActivityAction.py +41 -41
- azure/durable_functions/models/actions/CallActivityWithRetryAction.py +45 -45
- azure/durable_functions/models/actions/CallEntityAction.py +46 -46
- azure/durable_functions/models/actions/CallHttpAction.py +35 -35
- azure/durable_functions/models/actions/CallSubOrchestratorAction.py +40 -40
- azure/durable_functions/models/actions/CallSubOrchestratorWithRetryAction.py +44 -44
- azure/durable_functions/models/actions/CompoundAction.py +35 -35
- azure/durable_functions/models/actions/ContinueAsNewAction.py +36 -36
- azure/durable_functions/models/actions/CreateTimerAction.py +48 -48
- azure/durable_functions/models/actions/NoOpAction.py +35 -35
- azure/durable_functions/models/actions/SignalEntityAction.py +47 -47
- azure/durable_functions/models/actions/WaitForExternalEventAction.py +63 -63
- azure/durable_functions/models/actions/WhenAllAction.py +14 -14
- azure/durable_functions/models/actions/WhenAnyAction.py +14 -14
- azure/durable_functions/models/actions/__init__.py +24 -24
- azure/durable_functions/models/entities/EntityState.py +74 -74
- azure/durable_functions/models/entities/OperationResult.py +76 -76
- azure/durable_functions/models/entities/RequestMessage.py +53 -53
- azure/durable_functions/models/entities/ResponseMessage.py +48 -48
- azure/durable_functions/models/entities/Signal.py +62 -62
- azure/durable_functions/models/entities/__init__.py +17 -17
- azure/durable_functions/models/history/HistoryEvent.py +92 -92
- azure/durable_functions/models/history/HistoryEventType.py +27 -27
- azure/durable_functions/models/history/__init__.py +8 -8
- azure/durable_functions/models/utils/__init__.py +7 -7
- azure/durable_functions/models/utils/entity_utils.py +103 -91
- azure/durable_functions/models/utils/http_utils.py +69 -69
- azure/durable_functions/models/utils/json_utils.py +56 -56
- azure/durable_functions/orchestrator.py +71 -71
- {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/LICENSE +21 -21
- {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/METADATA +58 -58
- azure_functions_durable-1.2.10.dist-info/RECORD +100 -0
- tests/models/test_DecoratorMetadata.py +135 -135
- tests/models/test_Decorators.py +107 -107
- tests/models/test_DurableOrchestrationBindings.py +68 -68
- tests/models/test_DurableOrchestrationClient.py +730 -730
- tests/models/test_DurableOrchestrationContext.py +102 -102
- tests/models/test_DurableOrchestrationStatus.py +59 -59
- tests/models/test_OrchestrationState.py +28 -28
- tests/models/test_RpcManagementOptions.py +79 -79
- tests/models/test_TokenSource.py +10 -10
- tests/orchestrator/models/OrchestrationInstance.py +18 -18
- tests/orchestrator/orchestrator_test_utils.py +130 -130
- tests/orchestrator/schemas/OrchetrationStateSchema.py +66 -66
- tests/orchestrator/test_call_http.py +235 -176
- tests/orchestrator/test_continue_as_new.py +67 -67
- tests/orchestrator/test_create_timer.py +126 -126
- tests/orchestrator/test_entity.py +395 -395
- tests/orchestrator/test_external_event.py +53 -53
- tests/orchestrator/test_fan_out_fan_in.py +175 -175
- tests/orchestrator/test_is_replaying_flag.py +101 -101
- tests/orchestrator/test_retries.py +308 -308
- tests/orchestrator/test_sequential_orchestrator.py +841 -841
- tests/orchestrator/test_sequential_orchestrator_custom_status.py +119 -119
- tests/orchestrator/test_sequential_orchestrator_with_retry.py +465 -465
- tests/orchestrator/test_serialization.py +30 -30
- tests/orchestrator/test_sub_orchestrator.py +95 -95
- tests/orchestrator/test_sub_orchestrator_with_retry.py +129 -129
- tests/orchestrator/test_task_any.py +60 -60
- tests/tasks/tasks_test_utils.py +17 -17
- tests/tasks/test_new_uuid.py +34 -34
- tests/test_utils/ContextBuilder.py +174 -174
- tests/test_utils/EntityContextBuilder.py +56 -56
- tests/test_utils/constants.py +1 -1
- tests/test_utils/json_utils.py +30 -30
- tests/test_utils/testClasses.py +56 -56
- tests/utils/__init__.py +1 -0
- tests/utils/test_entity_utils.py +24 -0
- azure_functions_durable-1.2.9.data/data/_manifest/bsi.json +0 -1
- azure_functions_durable-1.2.9.data/data/_manifest/manifest.cat +0 -0
- azure_functions_durable-1.2.9.data/data/_manifest/manifest.spdx.json +0 -11985
- azure_functions_durable-1.2.9.data/data/_manifest/manifest.spdx.json.sha256 +0 -1
- azure_functions_durable-1.2.9.dist-info/RECORD +0 -102
- {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/WHEEL +0 -0
- {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/top_level.txt +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
6194b3b605744eacb5e28e82794b2ebd150bffa2e6636a9c9ece42bb8d4ba889
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
azure/durable_functions/__init__.py,sha256=MJafSG-jUF_y-A4D93VUGR-V4VhwSIAw-LgiA5O0mAQ,2829
|
|
2
|
-
azure/durable_functions/constants.py,sha256=ocJtRXUTSnhD69cuseN0_pEg7n5cUa_zG6G_zuybock,405
|
|
3
|
-
azure/durable_functions/entity.py,sha256=ttoZd3X3XeYY8RPhhVAHY2ID8qFvsjnuDunaCbFVLEs,4372
|
|
4
|
-
azure/durable_functions/orchestrator.py,sha256=s9R9LKUA01fS41VmBOEhgMiPqLU40a4iOkp6clAaXdE,2438
|
|
5
|
-
azure/durable_functions/decorators/__init__.py,sha256=252iOqXe_lmKLsetZTXmVJcki6xrlJ20A6GnqqGzflQ,147
|
|
6
|
-
azure/durable_functions/decorators/durable_app.py,sha256=armKcMOX9sP7XaqPapGvgwiJQPGGEmTZ4F_uZkFKtsg,9105
|
|
7
|
-
azure/durable_functions/decorators/metadata.py,sha256=oGsmkXBcPRTosyBdhHcMYCrFI17rGxOxkKAxvhcmANY,2719
|
|
8
|
-
azure/durable_functions/models/DurableEntityContext.py,sha256=y8RWmfqEHochsreZIBJILy5agp8umeJ1QQ6qfWHfLuc,5629
|
|
9
|
-
azure/durable_functions/models/DurableHttpRequest.py,sha256=a--KJqJ8BOaZ1EDjpdOAuGSai-oi7LmtpNkt3DyvIes,1963
|
|
10
|
-
azure/durable_functions/models/DurableOrchestrationBindings.py,sha256=UUemNrsfJiYLTOcABzfYxuxrndAgHNMTpB-URX5zw48,2342
|
|
11
|
-
azure/durable_functions/models/DurableOrchestrationClient.py,sha256=br8fC0Esh31ZwHVy7ThXvW3iWqs6tKOqba_NUODTO5E,31214
|
|
12
|
-
azure/durable_functions/models/DurableOrchestrationContext.py,sha256=7utu8L_RtAmdM_uwHeDjI8MI2P4zpX8S8rKzc8UFTyU,27850
|
|
13
|
-
azure/durable_functions/models/DurableOrchestrationStatus.py,sha256=OTar8vhzuMNQ2Ib4JrIy9JSxeoiNLujgLHfWysdri9M,5893
|
|
14
|
-
azure/durable_functions/models/EntityStateResponse.py,sha256=PAT4pNjx3ce0JScPIrqyZnJr9q0r-yZqTi2VmcbYhuA,651
|
|
15
|
-
azure/durable_functions/models/FunctionContext.py,sha256=xsW6KeBi-_OkzoCg6aHVPuD3ecL8MkWtS6XkIEJu55A,267
|
|
16
|
-
azure/durable_functions/models/OrchestrationRuntimeStatus.py,sha256=e7Io1IxkRyBbLc4CdC9xRFnYk-MnjDLBagw2f_Ov74w,937
|
|
17
|
-
azure/durable_functions/models/OrchestratorState.py,sha256=ZZPR1KuIBcqQgah5txLs6lkR8q39-qlTNWrfegzLSRE,3881
|
|
18
|
-
azure/durable_functions/models/PurgeHistoryResult.py,sha256=_8JScnOP9tx8xBhcaKb_CqRvpwAQUZwFjfxMOb9Ajg0,1059
|
|
19
|
-
azure/durable_functions/models/ReplaySchema.py,sha256=F6diOY4Fj-9-eaO1uwhUXzhAk86sQbV6ErC918vXuNg,150
|
|
20
|
-
azure/durable_functions/models/RetryOptions.py,sha256=MliAqGDRsW-FZD8V3PYXlKE_idtf7LieSy-L_XGl90M,1919
|
|
21
|
-
azure/durable_functions/models/RpcManagementOptions.py,sha256=UQihOaIJsn411KCVHFwhIDdGnU8ufoWo_7pOI-qNrvg,3396
|
|
22
|
-
azure/durable_functions/models/Task.py,sha256=h3dk58_gs1gxMcMMcrde21_lXTodSdp-PKJy1_Cu7OI,14773
|
|
23
|
-
azure/durable_functions/models/TaskOrchestrationExecutor.py,sha256=INB10M5mAz_tebgvbTyMzlKoyLdfXX2i5w58paPTDIA,15128
|
|
24
|
-
azure/durable_functions/models/TokenSource.py,sha256=JsZNFCvVmz-c7sXjsFEaEcwI-txmQaYKBDzwGsbbpys,1766
|
|
25
|
-
azure/durable_functions/models/__init__.py,sha256=D7rbLYJRk0Ifz0p5ZW6ahnTPI7I5dtb8Bv_-iykVqO0,930
|
|
26
|
-
azure/durable_functions/models/actions/Action.py,sha256=tyH3kf8K-r3CUBbPRLPmmldPiYKC2frGmc96wxDhcTI,575
|
|
27
|
-
azure/durable_functions/models/actions/ActionType.py,sha256=8CG52CpT8Fgvgbvp4fTGPFtnHBiHkOb5jNrqGmVgHG8,489
|
|
28
|
-
azure/durable_functions/models/actions/CallActivityAction.py,sha256=AqsvwWVcagqO6gFglQA6SGHBsT7sArGv3nPBi_VBO_Y,1455
|
|
29
|
-
azure/durable_functions/models/actions/CallActivityWithRetryAction.py,sha256=XcMMA6KKwSzAY4_lDS5r6tZ9PfZmpAY57hQh-F2UPgw,1641
|
|
30
|
-
azure/durable_functions/models/actions/CallEntityAction.py,sha256=9zUD5q13OXPyaoiqZDSNjM0I3DyLQBsBQLHV4oUFmO0,1626
|
|
31
|
-
azure/durable_functions/models/actions/CallHttpAction.py,sha256=BaO4azPkm7pVFkbV057njkwxf8yyWyxncOnPMZ6dpuY,1127
|
|
32
|
-
azure/durable_functions/models/actions/CallSubOrchestratorAction.py,sha256=WkDCNOtFMTar-32GofHVoHM6mYIu-QjnEpU00sBb_jw,1501
|
|
33
|
-
azure/durable_functions/models/actions/CallSubOrchestratorWithRetryAction.py,sha256=b2FLzJkv6S11VeYoPI15Z395C5sTKcepOLlo2FgXEU8,1755
|
|
34
|
-
azure/durable_functions/models/actions/CompoundAction.py,sha256=FFrxqScZk02tbxvDdlAReSOKXvhVONRjLVbxUybGzBA,1082
|
|
35
|
-
azure/durable_functions/models/actions/ContinueAsNewAction.py,sha256=45FXT1zgPmMC6SBG0jyzeCmBwvcT15oH35ixNqoOASo,1159
|
|
36
|
-
azure/durable_functions/models/actions/CreateTimerAction.py,sha256=qC6oZXstHDURoHz5NhsFHCDMXP6KSw6Zqj9QKjMOjEE,1527
|
|
37
|
-
azure/durable_functions/models/actions/NoOpAction.py,sha256=33Urw_qLcuLaXZfy1eiSOh983IaY0Qql_bcVz8bMalI,1329
|
|
38
|
-
azure/durable_functions/models/actions/SignalEntityAction.py,sha256=ZgWm98iLBNCV_zRInbr67neGimDlJcKi_cbhCChj_EY,1633
|
|
39
|
-
azure/durable_functions/models/actions/WaitForExternalEventAction.py,sha256=Xc6ra48XbY_V0yyOkHpvcnohx_5-WJHroWbgFppLWn8,1945
|
|
40
|
-
azure/durable_functions/models/actions/WhenAllAction.py,sha256=pnkf7h3iZKCnTEK9ig3wi2DdaJgL2O4b9BoNCCzZQFE,464
|
|
41
|
-
azure/durable_functions/models/actions/WhenAnyAction.py,sha256=mGpXyPXgkA0GD5eUuk9ulam3x5HTz4atbZFth6DRp0I,464
|
|
42
|
-
azure/durable_functions/models/actions/__init__.py,sha256=d3i8UVKsxeKacjqpmOCYxnTeZlW2Ks5k2IT5Nmub7xM,837
|
|
43
|
-
azure/durable_functions/models/entities/EntityState.py,sha256=bj7w6Lfp7yWDBplSAbO4HuwUufn-5_MchAPtuxmlqp8,2183
|
|
44
|
-
azure/durable_functions/models/entities/OperationResult.py,sha256=w4tocBjsTc4ALoLslBn8G4KpsYEB8TPaxHe2-ejx16E,2005
|
|
45
|
-
azure/durable_functions/models/entities/RequestMessage.py,sha256=bWUIAuQOpMH_Znrxmcv8IvbrOLn5qTgigeak8oGYu_c,1689
|
|
46
|
-
azure/durable_functions/models/entities/ResponseMessage.py,sha256=AlUBLiiyNmI4DsIPafSe8Pm39_jg2pAcS4FcrUexjfg,1540
|
|
47
|
-
azure/durable_functions/models/entities/Signal.py,sha256=aLzGpBucK4rMHq83sf0Thmd-LDdsqW_IZGihEt-upM0,1251
|
|
48
|
-
azure/durable_functions/models/entities/__init__.py,sha256=-HNH7BIPVpU6-k6Aigc_MdztKv-0CmZDo7I4y6918Bk,357
|
|
49
|
-
azure/durable_functions/models/history/HistoryEvent.py,sha256=wL7RTL7YgB7sSRZ15I9r0lEkGkNi2AFvDBWaN1l_7Lk,2471
|
|
50
|
-
azure/durable_functions/models/history/HistoryEventType.py,sha256=Vk2CwXRmUQ0ght2foErXhttbAwiCCgAlL4R4czDbD0A,716
|
|
51
|
-
azure/durable_functions/models/history/__init__.py,sha256=caew8L8N0bAYjhBjfaNx_1zCbzPZFcrRdQGjs4V2bT4,229
|
|
52
|
-
azure/durable_functions/models/utils/__init__.py,sha256=GneVHb4zC2G1gMaNGwxAy-kmbsME2l43WwwllC2n390,214
|
|
53
|
-
azure/durable_functions/models/utils/entity_utils.py,sha256=aWsg9OzBG-pUb9JqruswDmI0GO1r5dYGY-0Nl1XUYlI,2472
|
|
54
|
-
azure/durable_functions/models/utils/http_utils.py,sha256=jwkGIxDdRMkPh0Qab0ZsjPhpOJuoVnDAoW4_GYQxUJs,2034
|
|
55
|
-
azure/durable_functions/models/utils/json_utils.py,sha256=IK3lZChsHDMGFTNsKl5mc_AhZT1qzdtmZkPIHibbVgY,2267
|
|
56
|
-
azure_functions_durable-1.2.9.data/data/_manifest/bsi.json,sha256=JQvi8hLQ8aceRLYn6_377A4X2-VdbaOTiYbHTr6B7jk,687
|
|
57
|
-
azure_functions_durable-1.2.9.data/data/_manifest/manifest.cat,sha256=Yw4LQV47Hx0EXyj_k0ix1gRCIGdOd_WyU6axVmkC5wc,11150
|
|
58
|
-
azure_functions_durable-1.2.9.data/data/_manifest/manifest.spdx.json,sha256=YZSztgV0Tqy14o6CeUsuvRUL_6LmY2qcns5Cu41LqIk,453677
|
|
59
|
-
azure_functions_durable-1.2.9.data/data/_manifest/manifest.spdx.json.sha256,sha256=7GKL1I8nCPfWpDoiXTz3dpA4MGaixwgT1ot1JgFEdCY,64
|
|
60
|
-
tests/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
tests/models/test_DecoratorMetadata.py,sha256=qVHApPjW_xEHx6wqzpZq0moUuWrGuRM1C5yOh-WyY7Y,3783
|
|
62
|
-
tests/models/test_Decorators.py,sha256=dKmK9HDTg-HpYZPAHnWeHDeRnlBcx2mV8aOucJhPpps,2818
|
|
63
|
-
tests/models/test_DurableOrchestrationBindings.py,sha256=QYas1ZjATJ-6b6f2f1Bl6uMLA-EAJNkf7CiaZS4BWcI,2893
|
|
64
|
-
tests/models/test_DurableOrchestrationClient.py,sha256=FVYDrHrXqwcTzDnrqLzaeH_QQpwTObolKKsEkd8rxow,31010
|
|
65
|
-
tests/models/test_DurableOrchestrationContext.py,sha256=dsmURdSXdoN_8DLC6KL0NIFRw7QFs6r2N06y82VxhI4,3828
|
|
66
|
-
tests/models/test_DurableOrchestrationStatus.py,sha256=4wuqbiKWTgtHdvkGeup23H3T5OrKff-C-IHOws2gy54,2426
|
|
67
|
-
tests/models/test_OrchestrationState.py,sha256=s9_dyHDSTESv27Qoe6hwbXc9o0I4WdYwNT1KvfLrlec,1244
|
|
68
|
-
tests/models/test_RpcManagementOptions.py,sha256=ZCREwEzR8NObt59aJeg6ldnRrcHsXE-Cau7i5omej64,3111
|
|
69
|
-
tests/models/test_TokenSource.py,sha256=ztFm4Pmy_iOPnGgBrCNwEod3J36qCqa-107SKNYOEWw,579
|
|
70
|
-
tests/orchestrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
tests/orchestrator/orchestrator_test_utils.py,sha256=PCZ0OnUoTvfwyICyzRfYP3wme_J3Yx1SYzX14O01THk,5229
|
|
72
|
-
tests/orchestrator/test_call_http.py,sha256=GAKGUAyQlj5PDm8AqI4qlL7r0GL2ZJj6LnFudZEedzE,6358
|
|
73
|
-
tests/orchestrator/test_continue_as_new.py,sha256=PcJj5-zvrgZfJAiQYSsa0X0WoImxUX9PfyrbOieikqk,2508
|
|
74
|
-
tests/orchestrator/test_create_timer.py,sha256=GqiwuOKcitvqTtZjnOd6LyIE7IkBuxn_V60W3jFyr5s,5450
|
|
75
|
-
tests/orchestrator/test_entity.py,sha256=sgKdKMplNJ5kmZOv9kUludGAEjdGpyy7QAMZoWN4ibQ,13462
|
|
76
|
-
tests/orchestrator/test_external_event.py,sha256=Qz-_hhqZmegRdlyYy_UA48rj95fBkPUST8Bx9XjqNnM,2481
|
|
77
|
-
tests/orchestrator/test_fan_out_fan_in.py,sha256=2ZPspECDPQEZa9h249arXeP0vPlCDntc_cKtYrO6618,7043
|
|
78
|
-
tests/orchestrator/test_is_replaying_flag.py,sha256=LbYcF4j10B_vxDJeIxQ3JPMuXBgt1PdMNdUqO4ruIrs,4285
|
|
79
|
-
tests/orchestrator/test_retries.py,sha256=cCGKYjKz2nDS3gdaoOPmiGcEiG9_cAceHPBALpRrlb8,10803
|
|
80
|
-
tests/orchestrator/test_sequential_orchestrator.py,sha256=rqvuux4V1AKUWqD6B2dkcq9eOfmYFiGT5qsu4HAsHiI,32023
|
|
81
|
-
tests/orchestrator/test_sequential_orchestrator_custom_status.py,sha256=OFE2Yg-tmUgkO3hi__8hQBVayLZOtXKD2mdl_EC5XOs,4552
|
|
82
|
-
tests/orchestrator/test_sequential_orchestrator_with_retry.py,sha256=dhjR9VqeB56AGcF_0y0-eGttzbDk7vN3eHGdXVYlXhE,18182
|
|
83
|
-
tests/orchestrator/test_serialization.py,sha256=nwTb56o-A2VWYUhyMrEM7RaGE14s_RtZ6vHOaqv0IM0,1209
|
|
84
|
-
tests/orchestrator/test_sub_orchestrator.py,sha256=SqtAUtogpmQKx-Es5J6ZhFkN8KH6eHbfFfo3VGu5VB4,4083
|
|
85
|
-
tests/orchestrator/test_sub_orchestrator_with_retry.py,sha256=sp_trEkr8FTFhRLtJ3OXLMxFCvLDxiLdUHlXzxIzwHw,5911
|
|
86
|
-
tests/orchestrator/test_task_any.py,sha256=AcYqZi11NfNlcI_wVxeFGMU8UI5mzUKeuOM_XEAL2wk,2635
|
|
87
|
-
tests/orchestrator/models/OrchestrationInstance.py,sha256=0xAqV8LmK8iCehJduOuDVRJoxZCNKgV-KlkPy-eMmXc,473
|
|
88
|
-
tests/orchestrator/schemas/OrchetrationStateSchema.py,sha256=_2Ia9sddb3dkMDenosLnSirf1NiKZN6At2xRTNKBQIo,2652
|
|
89
|
-
tests/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
-
tests/tasks/tasks_test_utils.py,sha256=6_St9kE3V5vqLoEHRVgUhyfq72jBlrlVHal3E2jF-LQ,720
|
|
91
|
-
tests/tasks/test_new_uuid.py,sha256=4XlHn6ZrOI3q2vm3CUIlR9cETx1RH3xj6_RJhMam7EY,1385
|
|
92
|
-
tests/test_utils/ContextBuilder.py,sha256=PwF0Y3avxwVBqblYhwKh33N4vfjKncboZbd_GVFq9OE,7285
|
|
93
|
-
tests/test_utils/EntityContextBuilder.py,sha256=M0hKA52ap6NFMa8McbUbJ8xuR6_8nFlOP1qzpdzHzrw,1883
|
|
94
|
-
tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
tests/test_utils/constants.py,sha256=mI0HZbhK5zzGVuBUuCqPVmXrvVhZ7HF_xf6dTV2z8Rs,53
|
|
96
|
-
tests/test_utils/json_utils.py,sha256=7jAN_ihI0S9Z8OL9VZM1yMXpSqfEavJMWYpPQtqh7y4,1381
|
|
97
|
-
tests/test_utils/testClasses.py,sha256=WMwVttxWwB9AarXhdrKYSEF1_P8KRjgo44SAFvN3rUs,1465
|
|
98
|
-
azure_functions_durable-1.2.9.dist-info/LICENSE,sha256=2rToBqx9g8pWXq5nv6gA6Am30gqghONA2d7_04p8Nus,1069
|
|
99
|
-
azure_functions_durable-1.2.9.dist-info/METADATA,sha256=iG9STDnO1YW_kAkxeJNJ3X5e7Uy1QvgXLIwGx2iO0J4,3362
|
|
100
|
-
azure_functions_durable-1.2.9.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
101
|
-
azure_functions_durable-1.2.9.dist-info/top_level.txt,sha256=h-L8XDVPJ9YzBbHlPvM7FVo1cqNGToNK9ix99ySGOUY,12
|
|
102
|
-
azure_functions_durable-1.2.9.dist-info/RECORD,,
|
|
File without changes
|
{azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/top_level.txt
RENAMED
|
File without changes
|