Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,4 @@ pytest

---

[hello@axme.ai](mailto:hello@axme.ai) · [@axme_ai](https://x.com/axme_ai) · [Security](SECURITY.md) · [License](LICENSE)
[contact@axme.ai](mailto:contact@axme.ai) · [@axme_ai](https://x.com/axme_ai) · [Security](SECURITY.md) · [License](LICENSE)
89 changes: 89 additions & 0 deletions docs/openapi/gateway.track-f-sprint1.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1147,6 +1147,65 @@
}
}
},
"/v1/portal/personal/profile": {
"post": {
"summary": "Update Personal Profile",
"description": "Update the caller's profile (display name, company). Both fields optional.",
"operationId": "update_personal_profile_v1_portal_personal_profile_post",
"parameters": [
{
"name": "authorization",
"in": "header",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Authorization"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PersonalProfileUpdateRequest"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"additionalProperties": true,
"title": "Response Update Personal Profile V1 Portal Personal Profile Post"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/portal/personal/overview": {
"get": {
"summary": "Personal Portal Overview",
Expand Down Expand Up @@ -7724,6 +7783,36 @@
"type": "object",
"title": "OrganizationUpdateRequest"
},
"PersonalProfileUpdateRequest": {
"properties": {
"display_name": {
"anyOf": [
{
"type": "string",
"maxLength": 255
},
{
"type": "null"
}
],
"title": "Display Name"
},
"company": {
"anyOf": [
{
"type": "string",
"maxLength": 255
},
{
"type": "null"
}
],
"title": "Company"
}
},
"type": "object",
"title": "PersonalProfileUpdateRequest"
},
"PersonalWorkspaceSelectionRequest": {
"properties": {
"org_id": {
Expand Down
153 changes: 153 additions & 0 deletions docs/openapi/gateway.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4112,6 +4112,129 @@
}
}
},
"/v1/portal/personal/profile": {
"post": {
"summary": "Update Personal Profile",
"description": "Update the caller's profile (display name, company). Both fields optional.",
"operationId": "update_personal_profile_v1_portal_personal_profile_post",
"parameters": [
{
"name": "authorization",
"in": "header",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Authorization"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PersonalProfileUpdateRequest"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"additionalProperties": true,
"title": "Response Update Personal Profile V1 Portal Personal Profile Post"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/feedback/view": {
"get": {
"summary": "Feedback View",
"description": "View feedback form. Public, token-based access.",
"operationId": "feedback_view_v1_feedback_view_get",
"parameters": [
{
"name": "token",
"in": "query",
"required": true,
"schema": {
"type": "string",
"minLength": 1,
"title": "Token"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"additionalProperties": true,
"title": "Response Feedback View V1 Feedback View Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/feedback/submit": {
"post": {
"summary": "Feedback Submit",
"description": "Submit feedback responses. Public, token-based.",
"operationId": "feedback_submit_v1_feedback_submit_post",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object",
"title": "Response Feedback Submit V1 Feedback Submit Post"
}
}
}
}
}
}
},
"/v1/auth/cli-grants": {
"post": {
"summary": "Create Cli Grant",
Expand Down Expand Up @@ -16547,6 +16670,36 @@
"type": "object",
"title": "OrganizationUpdateRequest"
},
"PersonalProfileUpdateRequest": {
"properties": {
"display_name": {
"anyOf": [
{
"type": "string",
"maxLength": 255
},
{
"type": "null"
}
],
"title": "Display Name"
},
"company": {
"anyOf": [
{
"type": "string",
"maxLength": 255
},
{
"type": "null"
}
],
"title": "Company"
}
},
"type": "object",
"title": "PersonalProfileUpdateRequest"
},
"PersonalWorkspaceSelectionRequest": {
"properties": {
"org_id": {
Expand Down
2 changes: 1 addition & 1 deletion docs/security-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ For the full login and token lifecycle sequence, see [08-email-otp-login-and-tok

## 6) Incident response and disclosure

- Security reports and responsible disclosure: [hello@axme.ai](mailto:hello@axme.ai)
- Security reports and responsible disclosure: [contact@axme.ai](mailto:contact@axme.ai)
- High-risk credential events should trigger immediate rotation/revocation workflows.
- Incident handling includes containment, impact analysis, remediation, and follow-up hardening.

Expand Down
Loading