init commit
All checks were successful
Build and Publish / build-release (push) Successful in 4m46s

This commit is contained in:
2026-04-15 15:31:56 -05:00
commit f566d04a04
41 changed files with 2430 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
defmodule ProviderService.Commands do
defmodule RegisterProvider do
defstruct [:provider_id, :name, :email, :phone, :contact_name, :ruc, :address]
end
defmodule UpdateProvider do
defstruct [:provider_id, :name, :email, :phone, :contact_name, :ruc, :address]
end
defmodule DeactivateProvider do
defstruct [:provider_id, :deactivated_by]
end
defmodule ReactivateProvider do
defstruct [:provider_id, :reactivated_by]
end
defmodule AddProviderTemplate do
defstruct [:provider_id, :template_id, :policy_type, :s3_key, :fields, :client_type]
end
defmodule ActivateProviderTemplate do
defstruct [:provider_id, :template_id, :policy_type, :client_type]
end
defmodule DeactivateProviderTemplate do
defstruct [:provider_id, :template_id, :policy_type, :client_type]
end
defmodule SetDefaultProviderTemplate do
defstruct [:provider_id, :template_id, :policy_type, :client_type]
end
defmodule RemoveProviderTemplate do
defstruct [:provider_id, :template_id, :policy_type, :client_type]
end
end