azure-functions-durable 1.3.0__tar.gz → 1.3.1__tar.gz
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-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/durable_python_action.yml +2 -2
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/CONTRIBUTING.md +1 -1
- {azure-functions-durable-1.3.0/azure_functions_durable.egg-info → azure-functions-durable-1.3.1}/PKG-INFO +2 -2
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1/azure_functions_durable.egg-info}/PKG-INFO +2 -2
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure_functions_durable.egg-info/requires.txt +3 -1
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/setup.py +5 -3
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.devcontainer/devcontainer.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.devcontainer/setup.sh +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.flake8 +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/ISSUE_TEMPLATE/----feature-request.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/ISSUE_TEMPLATE/---bug-report.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/policies/resourceManagement.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/codeQL.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/submodule-sync.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/validate.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/CHANGELOG.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/CODEOWNERS +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/LICENSE +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/MANIFEST.in +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/SECURITY.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/constants.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/decorators/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/decorators/durable_app.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/decorators/metadata.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/entity.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/DurableEntityContext.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/DurableHttpRequest.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/DurableOrchestrationBindings.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/DurableOrchestrationClient.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/DurableOrchestrationContext.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/DurableOrchestrationStatus.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/EntityStateResponse.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/FunctionContext.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/OrchestrationRuntimeStatus.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/OrchestratorState.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/PurgeHistoryResult.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/ReplaySchema.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/RetryOptions.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/RpcManagementOptions.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/Task.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/TaskOrchestrationExecutor.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/TokenSource.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/Action.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/ActionType.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CallActivityAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CallActivityWithRetryAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CallEntityAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CallHttpAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CallSubOrchestratorAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CallSubOrchestratorWithRetryAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CompoundAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/ContinueAsNewAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/CreateTimerAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/NoOpAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/SignalEntityAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/WaitForExternalEventAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/WhenAllAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/WhenAnyAction.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/actions/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/entities/EntityState.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/entities/OperationResult.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/entities/RequestMessage.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/entities/ResponseMessage.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/entities/Signal.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/entities/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/history/HistoryEvent.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/history/HistoryEventType.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/history/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/utils/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/utils/entity_utils.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/utils/http_utils.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/models/utils/json_utils.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/orchestrator.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/testing/OrchestratorGeneratorWrapper.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/testing/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure-pipelines-release.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure-pipelines.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure_functions_durable.egg-info/SOURCES.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure_functions_durable.egg-info/dependency_links.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure_functions_durable.egg-info/top_level.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/eng/ci/code-mirror.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/eng/ci/official-build.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/eng/templates/build.yml +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/noxfile.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/aml_durable_orchestrator/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/aml_durable_orchestrator/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/aml_pipeline/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/aml_pipeline/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/aml_poll_status/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/aml_poll_status/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/extensions.csproj +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/shared/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/shared/aml_helper.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/shared/auth_helper.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/Counter/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/Counter/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/DurableOrchestration/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/DurableOrchestration/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/DurableTrigger/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/DurableTrigger/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/RetrieveEntity/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/RetrieveEntity/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/E2_BackupSiteContent/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/E2_BackupSiteContent/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/E2_CopyFileToBlob/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/E2_CopyFileToBlob/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/E2_GetFileList/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/E2_GetFileList/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/HttpStart/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/HttpStart/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/E1_HelloSequence/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/E1_HelloSequence/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/E1_SayHello/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/E1_SayHello/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/HttpStart/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/HttpStart/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/DurableActivity/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/DurableActivity/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/DurableOrchestration/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/DurableOrchestration/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/DurableTrigger/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/DurableTrigger/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining_custom_status/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/E4_SMSPhoneVerification/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/E4_SMSPhoneVerification/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/HttpStart/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/HttpStart/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/SendSMSChallenge/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/SendSMSChallenge/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/E3_Monitor/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/E3_Monitor/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/E3_SendAlert/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/E3_SendAlert/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/E3_TooManyOpenIssues/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/E3_TooManyOpenIssues/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/HttpStart/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/HttpStart/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/DurableActivity/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/DurableActivity/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/DurableOrchestration/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/DurableOrchestration/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/DurableTrigger/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/DurableTrigger/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/serialize_arguments/shared_code/MyClasses.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/DurableFunctionsHttpStart/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/DurableFunctionsHttpStart/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/DurableOrchestrator/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/DurableOrchestrator/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/DurableSubOrchestrator/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/DurableSubOrchestrator/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/Hello/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/Hello/function.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/local.settings.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/simple_sub_orchestration/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/durable_blueprints.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/function_app.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/tests/readme.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/tests/test_my_orchestrator.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/tests/test_say_hello.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/blueprint/tests/test_start_orchestrator.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/function_app.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/tests/readme.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/tests/test_E2_BackupSiteContent.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/tests/test_E2_CopyFileToBlob.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/tests/test_E2_GetFileList.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/fan_in_fan_out/tests/test_HttpStart.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/.funcignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/.gitignore +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/README.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/function_app.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/host.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/proxies.json +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/requirements.txt +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/tests/readme.md +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/tests/test_http_start.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/tests/test_my_orchestrator.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples-v2/function_chaining/tests/test_say_hello.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/scripts/sample_deploy.sh +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/setup.cfg +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/conftest.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_DecoratorMetadata.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_Decorators.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_DurableOrchestrationBindings.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_DurableOrchestrationClient.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_DurableOrchestrationContext.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_DurableOrchestrationStatus.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_OrchestrationState.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_RpcManagementOptions.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/models/test_TokenSource.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/models/OrchestrationInstance.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/orchestrator_test_utils.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/schemas/OrchetrationStateSchema.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_call_http.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_continue_as_new.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_create_timer.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_entity.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_external_event.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_fan_out_fan_in.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_is_replaying_flag.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_retries.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_sequential_orchestrator.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_sequential_orchestrator_custom_status.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_sequential_orchestrator_with_retry.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_serialization.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_sub_orchestrator.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_sub_orchestrator_with_retry.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/orchestrator/test_task_any.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/tasks/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/tasks/tasks_test_utils.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/tasks/test_long_timers.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/tasks/test_new_uuid.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_constants.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_utils/ContextBuilder.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_utils/EntityContextBuilder.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_utils/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_utils/constants.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_utils/json_utils.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/test_utils/testClasses.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/utils/__init__.py +0 -0
- {azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/tests/utils/test_entity_utils.py +0 -0
|
@@ -12,10 +12,10 @@ jobs:
|
|
|
12
12
|
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v1
|
|
15
|
-
- name: Set up Python 3.
|
|
15
|
+
- name: Set up Python 3.9.x
|
|
16
16
|
uses: actions/setup-python@v1
|
|
17
17
|
with:
|
|
18
|
-
python-version: 3.
|
|
18
|
+
python-version: 3.9.x
|
|
19
19
|
- name: Install dependencies
|
|
20
20
|
run: |
|
|
21
21
|
python -m pip install --upgrade pip
|
|
@@ -24,7 +24,7 @@ Thank you for taking the time to contribute to Durable Functions in [Python](htt
|
|
|
24
24
|
- MacOS (or) Windows10 Ubuntu WSL
|
|
25
25
|
- Language Runtimes
|
|
26
26
|
- .NET Core 2.0
|
|
27
|
-
- \>= Python 3.
|
|
27
|
+
- \>= Python 3.9.x
|
|
28
28
|
|
|
29
29
|
Note: Some ML libraries may not be compatible with newer Python versions. Make sure the library is compatible with the Python version.
|
|
30
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: azure-functions-durable
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: Durable Functions For Python
|
|
5
5
|
Home-page: https://github.com/Azure/azure-functions-durable-python
|
|
6
6
|
Author: Azure Functions team at Microsoft Corp.
|
|
@@ -16,7 +16,7 @@ Classifier: Operating System :: POSIX
|
|
|
16
16
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
17
17
|
Classifier: Environment :: Web Environment
|
|
18
18
|
Classifier: Development Status :: 5 - Production/Stable
|
|
19
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.9,<4
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: azure-functions-durable
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: Durable Functions For Python
|
|
5
5
|
Home-page: https://github.com/Azure/azure-functions-durable-python
|
|
6
6
|
Author: Azure Functions team at Microsoft Corp.
|
|
@@ -16,7 +16,7 @@ Classifier: Operating System :: POSIX
|
|
|
16
16
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
17
17
|
Classifier: Environment :: Web Environment
|
|
18
18
|
Classifier: Development Status :: 5 - Production/Stable
|
|
19
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.9,<4
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
|
|
@@ -52,13 +52,15 @@ setup(
|
|
|
52
52
|
'Development Status :: 5 - Production/Stable',
|
|
53
53
|
],
|
|
54
54
|
license='MIT',
|
|
55
|
-
python_requires='>=3.
|
|
55
|
+
python_requires='>=3.9,<4',
|
|
56
56
|
install_requires=[
|
|
57
57
|
'azure-functions>=1.12.0',
|
|
58
|
-
'aiohttp>=3.
|
|
58
|
+
'aiohttp>=3.12.9',
|
|
59
59
|
'requests==2.*',
|
|
60
60
|
'python-dateutil>=2.8.0',
|
|
61
|
-
'furl>=2.1.0'
|
|
61
|
+
'furl>=2.1.0',
|
|
62
|
+
'opentelemetry-api>=1.32.1',
|
|
63
|
+
'opentelemetry-sdk>=1.32.1'
|
|
62
64
|
],
|
|
63
65
|
extra_requires=[
|
|
64
66
|
'flake8==3.7.8',
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.devcontainer/devcontainer.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/codeQL.yml
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/submodule-sync.yml
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/.github/workflows/validate.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/__init__.py
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/constants.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/azure/durable_functions/entity.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/.funcignore
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/host.json
RENAMED
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/aml_monitoring/proxies.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/.funcignore
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/counter_entity/host.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/.funcignore
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/README.md
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/host.json
RENAMED
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/fan_in_fan_out/proxies.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/README.md
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/function_chaining/host.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/.gitignore
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/human_interaction/host.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/local.settings.json
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/proxies.json
RENAMED
|
File without changes
|
{azure-functions-durable-1.3.0 → azure-functions-durable-1.3.1}/samples/monitor/requirements.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|