feature flags

This commit is contained in:
2026-01-07 22:05:53 +01:00
parent 1b63fa646c
commit 606b64cec7
530 changed files with 2092 additions and 2943 deletions

View File

@@ -132,6 +132,15 @@
}
}
},
"/auth/signup-sponsor": {
"post": {
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/dashboard/overview": {
"get": {
"responses": {
@@ -1449,6 +1458,9 @@
"type": "string",
"nullable": true
},
"companyId": {
"type": "string"
},
"role": {
"type": "string"
}
@@ -6013,6 +6025,29 @@
"displayName"
]
},
"SignupSponsorParamsDTO": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"password": {
"type": "string"
},
"displayName": {
"type": "string"
},
"companyName": {
"type": "string"
}
},
"required": [
"email",
"password",
"displayName",
"companyName"
]
},
"SponsorDashboardDTO": {
"type": "object",
"properties": {