azure-functions-durable 1.2.8__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.
Files changed (101) hide show
  1. azure/durable_functions/__init__.py +81 -81
  2. azure/durable_functions/constants.py +9 -9
  3. azure/durable_functions/decorators/__init__.py +3 -3
  4. azure/durable_functions/decorators/durable_app.py +249 -249
  5. azure/durable_functions/decorators/metadata.py +109 -109
  6. azure/durable_functions/entity.py +125 -125
  7. azure/durable_functions/models/DurableEntityContext.py +201 -201
  8. azure/durable_functions/models/DurableHttpRequest.py +58 -58
  9. azure/durable_functions/models/DurableOrchestrationBindings.py +66 -66
  10. azure/durable_functions/models/DurableOrchestrationClient.py +781 -711
  11. azure/durable_functions/models/DurableOrchestrationContext.py +722 -707
  12. azure/durable_functions/models/DurableOrchestrationStatus.py +156 -156
  13. azure/durable_functions/models/EntityStateResponse.py +23 -23
  14. azure/durable_functions/models/FunctionContext.py +7 -7
  15. azure/durable_functions/models/OrchestrationRuntimeStatus.py +32 -29
  16. azure/durable_functions/models/OrchestratorState.py +117 -116
  17. azure/durable_functions/models/PurgeHistoryResult.py +33 -33
  18. azure/durable_functions/models/ReplaySchema.py +8 -8
  19. azure/durable_functions/models/RetryOptions.py +69 -69
  20. azure/durable_functions/models/RpcManagementOptions.py +86 -86
  21. azure/durable_functions/models/Task.py +426 -426
  22. azure/durable_functions/models/TaskOrchestrationExecutor.py +346 -333
  23. azure/durable_functions/models/TokenSource.py +56 -56
  24. azure/durable_functions/models/__init__.py +24 -24
  25. azure/durable_functions/models/actions/Action.py +23 -23
  26. azure/durable_functions/models/actions/ActionType.py +18 -18
  27. azure/durable_functions/models/actions/CallActivityAction.py +41 -41
  28. azure/durable_functions/models/actions/CallActivityWithRetryAction.py +45 -45
  29. azure/durable_functions/models/actions/CallEntityAction.py +46 -46
  30. azure/durable_functions/models/actions/CallHttpAction.py +35 -35
  31. azure/durable_functions/models/actions/CallSubOrchestratorAction.py +40 -40
  32. azure/durable_functions/models/actions/CallSubOrchestratorWithRetryAction.py +44 -44
  33. azure/durable_functions/models/actions/CompoundAction.py +35 -35
  34. azure/durable_functions/models/actions/ContinueAsNewAction.py +36 -36
  35. azure/durable_functions/models/actions/CreateTimerAction.py +48 -48
  36. azure/durable_functions/models/actions/NoOpAction.py +35 -35
  37. azure/durable_functions/models/actions/SignalEntityAction.py +47 -47
  38. azure/durable_functions/models/actions/WaitForExternalEventAction.py +63 -63
  39. azure/durable_functions/models/actions/WhenAllAction.py +14 -14
  40. azure/durable_functions/models/actions/WhenAnyAction.py +14 -14
  41. azure/durable_functions/models/actions/__init__.py +24 -24
  42. azure/durable_functions/models/entities/EntityState.py +74 -74
  43. azure/durable_functions/models/entities/OperationResult.py +76 -76
  44. azure/durable_functions/models/entities/RequestMessage.py +53 -53
  45. azure/durable_functions/models/entities/ResponseMessage.py +48 -48
  46. azure/durable_functions/models/entities/Signal.py +62 -62
  47. azure/durable_functions/models/entities/__init__.py +17 -17
  48. azure/durable_functions/models/history/HistoryEvent.py +92 -92
  49. azure/durable_functions/models/history/HistoryEventType.py +27 -25
  50. azure/durable_functions/models/history/__init__.py +8 -8
  51. azure/durable_functions/models/utils/__init__.py +7 -7
  52. azure/durable_functions/models/utils/entity_utils.py +103 -91
  53. azure/durable_functions/models/utils/http_utils.py +69 -69
  54. azure/durable_functions/models/utils/json_utils.py +56 -56
  55. azure/durable_functions/orchestrator.py +71 -71
  56. {azure_functions_durable-1.2.8.dist-info → azure_functions_durable-1.2.10.dist-info}/LICENSE +21 -21
  57. {azure_functions_durable-1.2.8.dist-info → azure_functions_durable-1.2.10.dist-info}/METADATA +58 -58
  58. azure_functions_durable-1.2.10.dist-info/RECORD +100 -0
  59. {azure_functions_durable-1.2.8.dist-info → azure_functions_durable-1.2.10.dist-info}/WHEEL +1 -1
  60. tests/models/test_DecoratorMetadata.py +135 -135
  61. tests/models/test_Decorators.py +107 -107
  62. tests/models/test_DurableOrchestrationBindings.py +68 -56
  63. tests/models/test_DurableOrchestrationClient.py +730 -612
  64. tests/models/test_DurableOrchestrationContext.py +102 -102
  65. tests/models/test_DurableOrchestrationStatus.py +59 -59
  66. tests/models/test_OrchestrationState.py +28 -28
  67. tests/models/test_RpcManagementOptions.py +79 -79
  68. tests/models/test_TokenSource.py +10 -10
  69. tests/orchestrator/models/OrchestrationInstance.py +18 -18
  70. tests/orchestrator/orchestrator_test_utils.py +130 -130
  71. tests/orchestrator/schemas/OrchetrationStateSchema.py +66 -66
  72. tests/orchestrator/test_call_http.py +235 -176
  73. tests/orchestrator/test_continue_as_new.py +67 -67
  74. tests/orchestrator/test_create_timer.py +126 -126
  75. tests/orchestrator/test_entity.py +395 -395
  76. tests/orchestrator/test_external_event.py +53 -53
  77. tests/orchestrator/test_fan_out_fan_in.py +175 -175
  78. tests/orchestrator/test_is_replaying_flag.py +101 -101
  79. tests/orchestrator/test_retries.py +308 -308
  80. tests/orchestrator/test_sequential_orchestrator.py +841 -801
  81. tests/orchestrator/test_sequential_orchestrator_custom_status.py +119 -119
  82. tests/orchestrator/test_sequential_orchestrator_with_retry.py +465 -465
  83. tests/orchestrator/test_serialization.py +30 -30
  84. tests/orchestrator/test_sub_orchestrator.py +95 -95
  85. tests/orchestrator/test_sub_orchestrator_with_retry.py +129 -129
  86. tests/orchestrator/test_task_any.py +60 -60
  87. tests/tasks/tasks_test_utils.py +17 -17
  88. tests/tasks/test_new_uuid.py +34 -34
  89. tests/test_utils/ContextBuilder.py +174 -174
  90. tests/test_utils/EntityContextBuilder.py +56 -56
  91. tests/test_utils/constants.py +1 -1
  92. tests/test_utils/json_utils.py +30 -30
  93. tests/test_utils/testClasses.py +56 -56
  94. tests/utils/__init__.py +1 -0
  95. tests/utils/test_entity_utils.py +24 -0
  96. azure_functions_durable-1.2.8.data/data/_manifest/bsi.json +0 -1
  97. azure_functions_durable-1.2.8.data/data/_manifest/manifest.cat +0 -0
  98. azure_functions_durable-1.2.8.data/data/_manifest/manifest.spdx.json +0 -12845
  99. azure_functions_durable-1.2.8.data/data/_manifest/manifest.spdx.json.sha256 +0 -1
  100. azure_functions_durable-1.2.8.dist-info/RECORD +0 -102
  101. {azure_functions_durable-1.2.8.dist-info → azure_functions_durable-1.2.10.dist-info}/top_level.txt +0 -0
@@ -1 +0,0 @@
1
- 1e1c172796ed84b77960b55071d85aab821b1b63c58eac99a45732fb2c1a2aa2
@@ -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=VTICNxi_tYfa97Es9FRlaMP_tY8gp8vL8FbdpnzYWB0,28778
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=IXbB5ZaupdQjt2jmid_FYt1PF--S1S94vo1WF6CljhE,808
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=-uCDTBGikgF-k53xoUrTGhnhpDYCEp2czUAC5iijinI,14943
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=hZj05mf6Y5csBOMCbaPXEykSyNKN2iXsmstdHYX5TuM,660
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.8.data/data/_manifest/bsi.json,sha256=lvAR6tn0s9BtnCMM1stiBLg0HNztcXLapplpYxITte0,687
57
- azure_functions_durable-1.2.8.data/data/_manifest/manifest.cat,sha256=i2F41nUDJ12j5o29TfIjH4DQ63CLbXJ2FcxTftQvTZ8,11257
58
- azure_functions_durable-1.2.8.data/data/_manifest/manifest.spdx.json,sha256=HhwXJ5bthLd5YLVQcdhaq4IbG2PFjqyZpFcy-ywaKqI,483894
59
- azure_functions_durable-1.2.8.data/data/_manifest/manifest.spdx.json.sha256,sha256=hG0HQCI5ifjVur5aMTjw6vUIZZNozqY3i8F519qm_0c,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=6v8fwwvAvotANdgwj2Na7X9o6bk5DT13SAt2ZJCmY3w,2302
64
- tests/models/test_DurableOrchestrationClient.py,sha256=kvm3-XuNF8glVzZgxSVJTfZnvAOf7BvEj6voH4cw49A,26514
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=n01oCC00Q8unAnkfileuNgIpkI_dU4N8h9vkKdUeAOM,30363
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.8.dist-info/LICENSE,sha256=2rToBqx9g8pWXq5nv6gA6Am30gqghONA2d7_04p8Nus,1069
99
- azure_functions_durable-1.2.8.dist-info/METADATA,sha256=gcHnY8g-rzgdT6oKsCSa7MuSXkknIvyPmQPKvkj--Zs,3362
100
- azure_functions_durable-1.2.8.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
101
- azure_functions_durable-1.2.8.dist-info/top_level.txt,sha256=h-L8XDVPJ9YzBbHlPvM7FVo1cqNGToNK9ix99ySGOUY,12
102
- azure_functions_durable-1.2.8.dist-info/RECORD,,