Fully separated payment quotation and orchestration flows

This commit is contained in:
Stephan D
2026-02-11 17:25:44 +01:00
parent 9b8f59e05a
commit e116535926
112 changed files with 3204 additions and 8686 deletions

View File

@@ -122,10 +122,22 @@ if [ -f "${PROTO_DIR}/connector/v1/connector.proto" ]; then
generate_go_with_grpc "${PROTO_DIR}/connector/v1/connector.proto"
fi
if [ -f "${PROTO_DIR}/payments/orchestrator/v1/orchestrator.proto" ]; then
info "Compiling payments orchestrator protos"
clean_pb_files "./pkg/proto/payments/orchestrator"
generate_go_with_grpc "${PROTO_DIR}/payments/orchestrator/v1/orchestrator.proto"
if [ -f "${PROTO_DIR}/payments/shared/v1/shared.proto" ]; then
info "Compiling payments shared protos"
clean_pb_files "./pkg/proto/payments/shared"
generate_go_with_grpc "${PROTO_DIR}/payments/shared/v1/shared.proto"
fi
if [ -f "${PROTO_DIR}/payments/orchestration/v1/orchestration.proto" ]; then
info "Compiling payments orchestration protos"
clean_pb_files "./pkg/proto/payments/orchestration"
generate_go_with_grpc "${PROTO_DIR}/payments/orchestration/v1/orchestration.proto"
fi
if [ -f "${PROTO_DIR}/payments/quotation/v1/quotation.proto" ]; then
info "Compiling payments quotation protos"
clean_pb_files "./pkg/proto/payments/quotation"
generate_go_with_grpc "${PROTO_DIR}/payments/quotation/v1/quotation.proto"
fi
if [ -f "${PROTO_DIR}/billing/fees/v1/fees.proto" ]; then