├── .devcontainer ├── Dockerfile ├── devcontainer.json └── post-create.sh ├── .editorconfig ├── .github └── workflows │ ├── build-test-upload.yaml │ ├── build-test.yaml │ ├── deployment-azure.yaml │ ├── deployment-dockerhub.yaml │ ├── deployment-github.yaml │ ├── make-function-apps-matrix.yaml │ ├── pull-request.yaml │ ├── release-azure-dev.yaml │ └── release-azure-prod.yaml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── NhnToast.lutconfig ├── NhnToast.sln ├── README.md ├── assets ├── architecture.png ├── architecture.pptx └── nhn-sms.png ├── azure.yaml ├── global.json ├── infra ├── Get-OpenApiDocumentFromApim.ps1 ├── Provision-ApiManagement.ps1 ├── Provision-ApiManagementApi.ps1 ├── Provision-FunctionApp.ps1 ├── Purge-ApiManagement.ps1 ├── abbreviations.json ├── apiManagement.bicep ├── apiManagementApi.bicep ├── apim-api-operation-policy-pp-sms-verify.xml ├── apim-api-operation-policy-pp-sms.xml ├── apim-api-policy-pp.xml ├── apim-api-policy-sms-verify.xml ├── apim-api-policy-sms.xml ├── apim-global-policy.xml ├── appInsights.bicep ├── appsettings-sms-verify.json ├── appsettings-sms.json ├── azuredeploy.bicep ├── azuredeploy.json ├── bff-pp.json ├── consumptionPlan.bicep ├── deploymentScript.bicep ├── functionApp.bicep ├── logAnalyticsWorkspace.bicep ├── main.bicep ├── main.json ├── openapi-bff-pp.yaml ├── openapi-sms-verify.yaml ├── openapi-sms.yaml ├── provision-apiManagement.bicep ├── provision-apiManagementApi.bicep ├── provision-apiManagementApi.json ├── provision-functionApp.bicep ├── setup-apim.sh └── storageAccount.bicep ├── release-notes ├── v0.0.1.md ├── v0.1.0.md ├── v0.2.0.md ├── v0.3.0.md └── v0.4.0.md ├── src ├── nt-common │ ├── Builders │ │ └── RequestUrlBuilder.cs │ ├── Configurations │ │ └── ToastSettings.cs │ ├── Exceptions │ │ ├── RequestBodyNotValidException.cs │ │ ├── RequestHeaderNotValidException.cs │ │ ├── RequestQueryNotValidException.cs │ │ └── ToastException.cs │ ├── Extensions │ │ └── HttpRequestExtensions.cs │ ├── Models │ │ ├── BaseRequestPaths.cs │ │ ├── BaseRequestQueries.cs │ │ ├── ErrorResponseModel.cs │ │ ├── RequestHeaderModel.cs │ │ ├── RequestUrlOptions.cs │ │ ├── ResponseBodyModel.cs │ │ ├── ResponseHeaderModel.cs │ │ └── ResponseModel.cs │ ├── NhnToast.Common.csproj │ └── Validators │ │ ├── RegexDateTimeWrapper.cs │ │ └── RequestHeaderValidator.cs ├── nt-mms │ ├── .gitignore │ ├── Configurations │ │ └── MmsEndpointSettings.cs │ ├── Examples │ │ ├── BadRequestResponseModelExample.cs │ │ ├── InternalServerErrorResponseModelExample.cs │ │ ├── SendMessagesRequestBodyModelExample.cs │ │ └── SendMessagesResponseModelExample.cs │ ├── Models │ │ ├── SendMessagesRequestBody.cs │ │ ├── SendMessagesRequestRecipient.cs │ │ ├── SendMessagesResponseBody.cs │ │ └── SendMessagesResponseResult.cs │ ├── NhnToast.Mms.csproj │ ├── Properties │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Startup.cs │ ├── Triggers │ │ └── SendMessages.cs │ ├── Validators │ │ └── SendMessagesRequestBodyValidator.cs │ ├── host.json │ └── local.settings.sample.json ├── nt-ping │ ├── Class1.cs │ └── NhnToast.Ping.csproj ├── nt-sms-verify │ ├── .dockerignore │ ├── .gitignore │ ├── Configurations │ │ └── SmsVerificationEndpointSettings.cs │ ├── Dockerfile │ ├── Examples │ │ └── ListSendersResponseModelExample.cs │ ├── Models │ │ ├── ListSendersRequestQueries.cs │ │ ├── ListSendersRequestUrlOptions.cs │ │ └── ListSendersResponse.cs │ ├── NhnToast.Sms.Verification.csproj │ ├── Properties │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Startup.cs │ ├── Triggers │ │ └── ListSenders.cs │ ├── Validators │ │ └── ListSendersRequestQueryValidator.cs │ ├── host.json │ └── local.settings.sample.json └── nt-sms │ ├── .dockerignore │ ├── .gitignore │ ├── Configurations │ └── SmsEndpointSettings.cs │ ├── Dockerfile │ ├── Examples │ ├── GetMessageResponseModelExample.cs │ ├── ListMessageStatusResponseModelExample.cs │ ├── ListMessagesResponseModelExample.cs │ ├── SendMessagesRequestBodyModelExample.cs │ └── SendMessagesResponseModelExample.cs │ ├── Models │ ├── GetMessageRequestPaths.cs │ ├── GetMessageRequestQueries.cs │ ├── GetMessageRequestUrlOptions.cs │ ├── GetMessageResponse.cs │ ├── ListMessageStatusRequestQueries.cs │ ├── ListMessageStatusRequestUrlOptions.cs │ ├── ListMessageStatusResponse.cs │ ├── ListMessagesRequestQueries.cs │ ├── ListMessagesRequestUrlOptions.cs │ ├── ListMessagesResponse.cs │ ├── ListSendersResponse.cs │ ├── SendMessagesRequestBody.cs │ ├── SendMessagesRequestRecipient.cs │ ├── SendMessagesResponseBody.cs │ └── SendMessagesResponseResult.cs │ ├── NhnToast.Sms.csproj │ ├── Properties │ ├── serviceDependencies.json │ └── serviceDependencies.local.json │ ├── Startup.cs │ ├── Triggers │ ├── GetMessage.cs │ ├── ListMessageStatus.cs │ ├── ListMessages.cs │ └── SendMessages.cs │ ├── Validators │ ├── GetMessageRequestQueryValidator.cs │ ├── ListMessageStatusQueryValidator.cs │ ├── ListMessagesQueryValidator.cs │ ├── ListSendersRequestQueryValidator.cs │ └── SendMessagesRequestBodyValidator.cs │ ├── host.json │ └── local.settings.sample.json └── test ├── NhnToast.Common.Tests ├── Builders │ └── RequestUrlBuilderTests.cs ├── Configurations │ └── ToastSettingsTests.cs ├── Fakes │ ├── FakeEndpointSettings.cs │ ├── FakeRequestPaths.cs │ ├── FakeRequestQueries.cs │ ├── FakeRequestUrlOptions.cs │ ├── FakeResponseBodyModel.cs │ └── FakeResponseModel.cs ├── Models │ ├── ResponseBodyModelTests.cs │ └── ResponseModelTests.cs ├── NhnToast.Common.Tests.csproj └── Validators │ ├── RegexDateTimeWrapperTests.cs │ └── RequestHeaderValidatorTests.cs ├── NhnToast.Mms.Tests ├── Configurations │ └── MmsExamplesSettings.cs ├── Models │ └── SendMessagesResponseModelTests.cs ├── NhnToast.Mms.Tests.csproj ├── Triggers │ └── SendMessagesTests.cs ├── Usings.cs ├── Validators │ └── SendMessagesRequestBodyValidatorTests.cs ├── test.settings.json └── test.settings.sample.json ├── NhnToast.Ping.Tests ├── NhnToast.Ping.Tests.csproj ├── UnitTest1.cs └── Usings.cs ├── NhnToast.Sms.Tests ├── .gitignore ├── Configurations │ └── SmsExamplesSettings.cs ├── Models │ ├── GetMessageResponseModelTest.cs │ ├── ListMessageStatusResponseModelTest.cs │ ├── ListMessagesResponseModelTests.cs │ └── SendMessagesResponseModelTests.cs ├── NhnToast.Sms.Tests.csproj ├── Triggers │ ├── GetMessageTests.cs │ ├── LIstMessageStatusTests.cs │ ├── ListMessagesTests.cs │ └── SendMessagesTests.cs ├── Validators │ ├── GetMessageRequestQueryValidatorTests.cs │ ├── ListMessageStatusRequestQueryValidatorTests.cs │ ├── ListMessagesRequestQueryValidatorTests.cs │ └── SendMessagesRequestBodyValidatorTests.cs └── test.settings.sample.json ├── NhnToast.Sms.Verification.Tests ├── .gitignore ├── Configurations │ └── SmsVerificationExamplesSettings.cs ├── NhnToast.Sms.Verification.Tests.csproj ├── Triggers │ └── ListSendersTests.cs ├── Validators │ └── ListSendersRequestQueryValidatorTests.cs └── test.settings.sample.json └── NhnToast.Tests.Common ├── Configurations └── ToastTestSettings.cs └── NhnToast.Tests.Common.csproj /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.devcontainer/post-create.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-test-upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/build-test-upload.yaml -------------------------------------------------------------------------------- /.github/workflows/build-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/build-test.yaml -------------------------------------------------------------------------------- /.github/workflows/deployment-azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/deployment-azure.yaml -------------------------------------------------------------------------------- /.github/workflows/deployment-dockerhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/deployment-dockerhub.yaml -------------------------------------------------------------------------------- /.github/workflows/deployment-github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/deployment-github.yaml -------------------------------------------------------------------------------- /.github/workflows/make-function-apps-matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/make-function-apps-matrix.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/pull-request.yaml -------------------------------------------------------------------------------- /.github/workflows/release-azure-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/release-azure-dev.yaml -------------------------------------------------------------------------------- /.github/workflows/release-azure-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.github/workflows/release-azure-prod.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/LICENSE -------------------------------------------------------------------------------- /NhnToast.lutconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/NhnToast.lutconfig -------------------------------------------------------------------------------- /NhnToast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/NhnToast.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/README.md -------------------------------------------------------------------------------- /assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/assets/architecture.png -------------------------------------------------------------------------------- /assets/architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/assets/architecture.pptx -------------------------------------------------------------------------------- /assets/nhn-sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/assets/nhn-sms.png -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/azure.yaml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/global.json -------------------------------------------------------------------------------- /infra/Get-OpenApiDocumentFromApim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/Get-OpenApiDocumentFromApim.ps1 -------------------------------------------------------------------------------- /infra/Provision-ApiManagement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/Provision-ApiManagement.ps1 -------------------------------------------------------------------------------- /infra/Provision-ApiManagementApi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/Provision-ApiManagementApi.ps1 -------------------------------------------------------------------------------- /infra/Provision-FunctionApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/Provision-FunctionApp.ps1 -------------------------------------------------------------------------------- /infra/Purge-ApiManagement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/Purge-ApiManagement.ps1 -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/apiManagement.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apiManagement.bicep -------------------------------------------------------------------------------- /infra/apiManagementApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apiManagementApi.bicep -------------------------------------------------------------------------------- /infra/apim-api-operation-policy-pp-sms-verify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apim-api-operation-policy-pp-sms-verify.xml -------------------------------------------------------------------------------- /infra/apim-api-operation-policy-pp-sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apim-api-operation-policy-pp-sms.xml -------------------------------------------------------------------------------- /infra/apim-api-policy-pp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apim-api-policy-pp.xml -------------------------------------------------------------------------------- /infra/apim-api-policy-sms-verify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apim-api-policy-sms-verify.xml -------------------------------------------------------------------------------- /infra/apim-api-policy-sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apim-api-policy-sms.xml -------------------------------------------------------------------------------- /infra/apim-global-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/apim-global-policy.xml -------------------------------------------------------------------------------- /infra/appInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/appInsights.bicep -------------------------------------------------------------------------------- /infra/appsettings-sms-verify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/appsettings-sms-verify.json -------------------------------------------------------------------------------- /infra/appsettings-sms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/appsettings-sms.json -------------------------------------------------------------------------------- /infra/azuredeploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/azuredeploy.bicep -------------------------------------------------------------------------------- /infra/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/azuredeploy.json -------------------------------------------------------------------------------- /infra/bff-pp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/bff-pp.json -------------------------------------------------------------------------------- /infra/consumptionPlan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/consumptionPlan.bicep -------------------------------------------------------------------------------- /infra/deploymentScript.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/deploymentScript.bicep -------------------------------------------------------------------------------- /infra/functionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/functionApp.bicep -------------------------------------------------------------------------------- /infra/logAnalyticsWorkspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/logAnalyticsWorkspace.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/main.json -------------------------------------------------------------------------------- /infra/openapi-bff-pp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/openapi-bff-pp.yaml -------------------------------------------------------------------------------- /infra/openapi-sms-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/openapi-sms-verify.yaml -------------------------------------------------------------------------------- /infra/openapi-sms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/openapi-sms.yaml -------------------------------------------------------------------------------- /infra/provision-apiManagement.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/provision-apiManagement.bicep -------------------------------------------------------------------------------- /infra/provision-apiManagementApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/provision-apiManagementApi.bicep -------------------------------------------------------------------------------- /infra/provision-apiManagementApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/provision-apiManagementApi.json -------------------------------------------------------------------------------- /infra/provision-functionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/provision-functionApp.bicep -------------------------------------------------------------------------------- /infra/setup-apim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/setup-apim.sh -------------------------------------------------------------------------------- /infra/storageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/infra/storageAccount.bicep -------------------------------------------------------------------------------- /release-notes/v0.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/release-notes/v0.0.1.md -------------------------------------------------------------------------------- /release-notes/v0.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/release-notes/v0.1.0.md -------------------------------------------------------------------------------- /release-notes/v0.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/release-notes/v0.2.0.md -------------------------------------------------------------------------------- /release-notes/v0.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/release-notes/v0.3.0.md -------------------------------------------------------------------------------- /release-notes/v0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/release-notes/v0.4.0.md -------------------------------------------------------------------------------- /src/nt-common/Builders/RequestUrlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Builders/RequestUrlBuilder.cs -------------------------------------------------------------------------------- /src/nt-common/Configurations/ToastSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Configurations/ToastSettings.cs -------------------------------------------------------------------------------- /src/nt-common/Exceptions/RequestBodyNotValidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Exceptions/RequestBodyNotValidException.cs -------------------------------------------------------------------------------- /src/nt-common/Exceptions/RequestHeaderNotValidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Exceptions/RequestHeaderNotValidException.cs -------------------------------------------------------------------------------- /src/nt-common/Exceptions/RequestQueryNotValidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Exceptions/RequestQueryNotValidException.cs -------------------------------------------------------------------------------- /src/nt-common/Exceptions/ToastException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Exceptions/ToastException.cs -------------------------------------------------------------------------------- /src/nt-common/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/nt-common/Models/BaseRequestPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/BaseRequestPaths.cs -------------------------------------------------------------------------------- /src/nt-common/Models/BaseRequestQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/BaseRequestQueries.cs -------------------------------------------------------------------------------- /src/nt-common/Models/ErrorResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/ErrorResponseModel.cs -------------------------------------------------------------------------------- /src/nt-common/Models/RequestHeaderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/RequestHeaderModel.cs -------------------------------------------------------------------------------- /src/nt-common/Models/RequestUrlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/RequestUrlOptions.cs -------------------------------------------------------------------------------- /src/nt-common/Models/ResponseBodyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/ResponseBodyModel.cs -------------------------------------------------------------------------------- /src/nt-common/Models/ResponseHeaderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/ResponseHeaderModel.cs -------------------------------------------------------------------------------- /src/nt-common/Models/ResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Models/ResponseModel.cs -------------------------------------------------------------------------------- /src/nt-common/NhnToast.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/NhnToast.Common.csproj -------------------------------------------------------------------------------- /src/nt-common/Validators/RegexDateTimeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Validators/RegexDateTimeWrapper.cs -------------------------------------------------------------------------------- /src/nt-common/Validators/RequestHeaderValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-common/Validators/RequestHeaderValidator.cs -------------------------------------------------------------------------------- /src/nt-mms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/.gitignore -------------------------------------------------------------------------------- /src/nt-mms/Configurations/MmsEndpointSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Configurations/MmsEndpointSettings.cs -------------------------------------------------------------------------------- /src/nt-mms/Examples/BadRequestResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Examples/BadRequestResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-mms/Examples/InternalServerErrorResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Examples/InternalServerErrorResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-mms/Examples/SendMessagesRequestBodyModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Examples/SendMessagesRequestBodyModelExample.cs -------------------------------------------------------------------------------- /src/nt-mms/Examples/SendMessagesResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Examples/SendMessagesResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-mms/Models/SendMessagesRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Models/SendMessagesRequestBody.cs -------------------------------------------------------------------------------- /src/nt-mms/Models/SendMessagesRequestRecipient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Models/SendMessagesRequestRecipient.cs -------------------------------------------------------------------------------- /src/nt-mms/Models/SendMessagesResponseBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Models/SendMessagesResponseBody.cs -------------------------------------------------------------------------------- /src/nt-mms/Models/SendMessagesResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Models/SendMessagesResponseResult.cs -------------------------------------------------------------------------------- /src/nt-mms/NhnToast.Mms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/NhnToast.Mms.csproj -------------------------------------------------------------------------------- /src/nt-mms/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/nt-mms/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/nt-mms/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Startup.cs -------------------------------------------------------------------------------- /src/nt-mms/Triggers/SendMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Triggers/SendMessages.cs -------------------------------------------------------------------------------- /src/nt-mms/Validators/SendMessagesRequestBodyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/Validators/SendMessagesRequestBodyValidator.cs -------------------------------------------------------------------------------- /src/nt-mms/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/host.json -------------------------------------------------------------------------------- /src/nt-mms/local.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-mms/local.settings.sample.json -------------------------------------------------------------------------------- /src/nt-ping/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-ping/Class1.cs -------------------------------------------------------------------------------- /src/nt-ping/NhnToast.Ping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-ping/NhnToast.Ping.csproj -------------------------------------------------------------------------------- /src/nt-sms-verify/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/.dockerignore -------------------------------------------------------------------------------- /src/nt-sms-verify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/.gitignore -------------------------------------------------------------------------------- /src/nt-sms-verify/Configurations/SmsVerificationEndpointSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Configurations/SmsVerificationEndpointSettings.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Dockerfile -------------------------------------------------------------------------------- /src/nt-sms-verify/Examples/ListSendersResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Examples/ListSendersResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/Models/ListSendersRequestQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Models/ListSendersRequestQueries.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/Models/ListSendersRequestUrlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Models/ListSendersRequestUrlOptions.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/Models/ListSendersResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Models/ListSendersResponse.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/NhnToast.Sms.Verification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/NhnToast.Sms.Verification.csproj -------------------------------------------------------------------------------- /src/nt-sms-verify/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/nt-sms-verify/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/nt-sms-verify/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Startup.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/Triggers/ListSenders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Triggers/ListSenders.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/Validators/ListSendersRequestQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/Validators/ListSendersRequestQueryValidator.cs -------------------------------------------------------------------------------- /src/nt-sms-verify/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/host.json -------------------------------------------------------------------------------- /src/nt-sms-verify/local.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms-verify/local.settings.sample.json -------------------------------------------------------------------------------- /src/nt-sms/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/.dockerignore -------------------------------------------------------------------------------- /src/nt-sms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/.gitignore -------------------------------------------------------------------------------- /src/nt-sms/Configurations/SmsEndpointSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Configurations/SmsEndpointSettings.cs -------------------------------------------------------------------------------- /src/nt-sms/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Dockerfile -------------------------------------------------------------------------------- /src/nt-sms/Examples/GetMessageResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Examples/GetMessageResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-sms/Examples/ListMessageStatusResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Examples/ListMessageStatusResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-sms/Examples/ListMessagesResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Examples/ListMessagesResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-sms/Examples/SendMessagesRequestBodyModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Examples/SendMessagesRequestBodyModelExample.cs -------------------------------------------------------------------------------- /src/nt-sms/Examples/SendMessagesResponseModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Examples/SendMessagesResponseModelExample.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/GetMessageRequestPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/GetMessageRequestPaths.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/GetMessageRequestQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/GetMessageRequestQueries.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/GetMessageRequestUrlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/GetMessageRequestUrlOptions.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/GetMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/GetMessageResponse.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListMessageStatusRequestQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListMessageStatusRequestQueries.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListMessageStatusRequestUrlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListMessageStatusRequestUrlOptions.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListMessageStatusResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListMessageStatusResponse.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListMessagesRequestQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListMessagesRequestQueries.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListMessagesRequestUrlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListMessagesRequestUrlOptions.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListMessagesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListMessagesResponse.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/ListSendersResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/ListSendersResponse.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/SendMessagesRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/SendMessagesRequestBody.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/SendMessagesRequestRecipient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/SendMessagesRequestRecipient.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/SendMessagesResponseBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/SendMessagesResponseBody.cs -------------------------------------------------------------------------------- /src/nt-sms/Models/SendMessagesResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Models/SendMessagesResponseResult.cs -------------------------------------------------------------------------------- /src/nt-sms/NhnToast.Sms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/NhnToast.Sms.csproj -------------------------------------------------------------------------------- /src/nt-sms/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/nt-sms/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/nt-sms/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Startup.cs -------------------------------------------------------------------------------- /src/nt-sms/Triggers/GetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Triggers/GetMessage.cs -------------------------------------------------------------------------------- /src/nt-sms/Triggers/ListMessageStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Triggers/ListMessageStatus.cs -------------------------------------------------------------------------------- /src/nt-sms/Triggers/ListMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Triggers/ListMessages.cs -------------------------------------------------------------------------------- /src/nt-sms/Triggers/SendMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Triggers/SendMessages.cs -------------------------------------------------------------------------------- /src/nt-sms/Validators/GetMessageRequestQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Validators/GetMessageRequestQueryValidator.cs -------------------------------------------------------------------------------- /src/nt-sms/Validators/ListMessageStatusQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Validators/ListMessageStatusQueryValidator.cs -------------------------------------------------------------------------------- /src/nt-sms/Validators/ListMessagesQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Validators/ListMessagesQueryValidator.cs -------------------------------------------------------------------------------- /src/nt-sms/Validators/ListSendersRequestQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Validators/ListSendersRequestQueryValidator.cs -------------------------------------------------------------------------------- /src/nt-sms/Validators/SendMessagesRequestBodyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/Validators/SendMessagesRequestBodyValidator.cs -------------------------------------------------------------------------------- /src/nt-sms/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/host.json -------------------------------------------------------------------------------- /src/nt-sms/local.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/src/nt-sms/local.settings.sample.json -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Builders/RequestUrlBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Builders/RequestUrlBuilderTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Configurations/ToastSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Configurations/ToastSettingsTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Fakes/FakeEndpointSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Fakes/FakeEndpointSettings.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Fakes/FakeRequestPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Fakes/FakeRequestPaths.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Fakes/FakeRequestQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Fakes/FakeRequestQueries.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Fakes/FakeRequestUrlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Fakes/FakeRequestUrlOptions.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Fakes/FakeResponseBodyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Fakes/FakeResponseBodyModel.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Fakes/FakeResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Fakes/FakeResponseModel.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Models/ResponseBodyModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Models/ResponseBodyModelTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Models/ResponseModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Models/ResponseModelTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/NhnToast.Common.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/NhnToast.Common.Tests.csproj -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Validators/RegexDateTimeWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Validators/RegexDateTimeWrapperTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Common.Tests/Validators/RequestHeaderValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Common.Tests/Validators/RequestHeaderValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/Configurations/MmsExamplesSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/Configurations/MmsExamplesSettings.cs -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/Models/SendMessagesResponseModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/Models/SendMessagesResponseModelTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/NhnToast.Mms.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/NhnToast.Mms.Tests.csproj -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/Triggers/SendMessagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/Triggers/SendMessagesTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/Usings.cs -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/Validators/SendMessagesRequestBodyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/Validators/SendMessagesRequestBodyValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/test.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/test.settings.json -------------------------------------------------------------------------------- /test/NhnToast.Mms.Tests/test.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Mms.Tests/test.settings.sample.json -------------------------------------------------------------------------------- /test/NhnToast.Ping.Tests/NhnToast.Ping.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Ping.Tests/NhnToast.Ping.Tests.csproj -------------------------------------------------------------------------------- /test/NhnToast.Ping.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Ping.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /test/NhnToast.Ping.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Ping.Tests/Usings.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/.gitignore -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Configurations/SmsExamplesSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Configurations/SmsExamplesSettings.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Models/GetMessageResponseModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Models/GetMessageResponseModelTest.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Models/ListMessageStatusResponseModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Models/ListMessageStatusResponseModelTest.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Models/ListMessagesResponseModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Models/ListMessagesResponseModelTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Models/SendMessagesResponseModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Models/SendMessagesResponseModelTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/NhnToast.Sms.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/NhnToast.Sms.Tests.csproj -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Triggers/GetMessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Triggers/GetMessageTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Triggers/LIstMessageStatusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Triggers/LIstMessageStatusTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Triggers/ListMessagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Triggers/ListMessagesTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Triggers/SendMessagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Triggers/SendMessagesTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Validators/GetMessageRequestQueryValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Validators/GetMessageRequestQueryValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Validators/ListMessageStatusRequestQueryValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Validators/ListMessageStatusRequestQueryValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Validators/ListMessagesRequestQueryValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Validators/ListMessagesRequestQueryValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/Validators/SendMessagesRequestBodyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/Validators/SendMessagesRequestBodyValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Tests/test.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Tests/test.settings.sample.json -------------------------------------------------------------------------------- /test/NhnToast.Sms.Verification.Tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Verification.Tests/.gitignore -------------------------------------------------------------------------------- /test/NhnToast.Sms.Verification.Tests/Configurations/SmsVerificationExamplesSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Verification.Tests/Configurations/SmsVerificationExamplesSettings.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Verification.Tests/NhnToast.Sms.Verification.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Verification.Tests/NhnToast.Sms.Verification.Tests.csproj -------------------------------------------------------------------------------- /test/NhnToast.Sms.Verification.Tests/Triggers/ListSendersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Verification.Tests/Triggers/ListSendersTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Verification.Tests/Validators/ListSendersRequestQueryValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Verification.Tests/Validators/ListSendersRequestQueryValidatorTests.cs -------------------------------------------------------------------------------- /test/NhnToast.Sms.Verification.Tests/test.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Sms.Verification.Tests/test.settings.sample.json -------------------------------------------------------------------------------- /test/NhnToast.Tests.Common/Configurations/ToastTestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Tests.Common/Configurations/ToastTestSettings.cs -------------------------------------------------------------------------------- /test/NhnToast.Tests.Common/NhnToast.Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrel-kr/nhn-toast-notification-service-custom-connector/HEAD/test/NhnToast.Tests.Common/NhnToast.Tests.Common.csproj --------------------------------------------------------------------------------