Introduction of Partner Model, adding code to Tenant model

This commit is contained in:
Josako
2025-04-03 14:07:23 +02:00
parent 1762b930bc
commit 9ad7c1aee9
93 changed files with 823 additions and 22 deletions

View File

@@ -0,0 +1,24 @@
# config/type_defs/partner_service_types.py
PARTNER_SERVICE_TYPES = {
"REFERRAL_SERVICE": {
"name": "Referral Service",
"description": "Partner referring new customers",
},
"KNOWLEDGE_SERVICE": {
"name": "Knowledge Service",
"description": "Partner providing catalog content",
},
"SPECIALIST_SERVICE": {
"name": "Specialist Service",
"description": "Partner providing specialist solutions",
},
"MANAGEMENT_SERVICE": {
"name": "Management Service",
"description": "Partner managing customer instances",
},
"WHITE_LABEL_SERVICE": {
"name": "White Label Service",
"description": "Partner reselling under their own brand",
}
}