Update API documentation to include new endpoints for updating AD users and groups.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/3d6885b0-d066-41b0-8042-fa2b629d3709.jpg
This commit is contained in:
alphaeusmote
2025-04-09 01:15:42 +00:00
parent e27da69dd8
commit 067cdacde8
2 changed files with 710 additions and 0 deletions
+45
View File
@@ -157,6 +157,51 @@ const swaggerOptions = {
adProperties: { type: "object" },
},
},
LdapAttribute: {
type: "object",
properties: {
id: { type: "integer" },
connectionId: { type: "integer" },
name: { type: "string" },
displayName: { type: "string" },
description: { type: "string" },
type: { type: "string" },
multiValued: { type: "boolean" },
objectClass: { type: "string", enum: ["user", "group", "organizationalUnit", "computer", "domain"] },
isIndexed: { type: "boolean" },
createdAt: { type: "string", format: "date-time" },
updatedAt: { type: "string", format: "date-time" },
},
},
LdapFilter: {
type: "object",
properties: {
id: { type: "integer" },
connectionId: { type: "integer" },
name: { type: "string" },
description: { type: "string" },
objectClass: { type: "string", enum: ["user", "group", "organizationalUnit", "computer", "domain"] },
filter: { type: "object" },
ldapFilter: { type: "string" },
createdBy: { type: "integer" },
modifiedBy: { type: "integer" },
createdAt: { type: "string", format: "date-time" },
updatedAt: { type: "string", format: "date-time" },
},
},
LdapFilterRevision: {
type: "object",
properties: {
id: { type: "integer" },
filterId: { type: "integer" },
version: { type: "integer" },
filter: { type: "object" },
ldapFilter: { type: "string" },
createdBy: { type: "integer" },
createdAt: { type: "string", format: "date-time" },
comment: { type: "string" },
},
},
Error: {
type: "object",
properties: {