@seamapi/types 1.231.0 → 1.232.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/connect.cjs CHANGED
@@ -9174,6 +9174,57 @@ var openapi_default = {
9174
9174
  "x-fern-sdk-return-value": "acs_user"
9175
9175
  }
9176
9176
  },
9177
+ "/acs/users/unmanaged/list": {
9178
+ post: {
9179
+ operationId: "acsUsersUnmanagedListPost",
9180
+ requestBody: {
9181
+ content: {
9182
+ "application/json": {
9183
+ schema: {
9184
+ properties: {
9185
+ acs_system_id: { format: "uuid", type: "string" }
9186
+ },
9187
+ required: ["acs_system_id"],
9188
+ type: "object"
9189
+ }
9190
+ }
9191
+ }
9192
+ },
9193
+ responses: {
9194
+ 200: {
9195
+ content: {
9196
+ "application/json": {
9197
+ schema: {
9198
+ properties: {
9199
+ acs_users: {
9200
+ items: { $ref: "#/components/schemas/acs_user" },
9201
+ type: "array"
9202
+ },
9203
+ ok: { type: "boolean" }
9204
+ },
9205
+ required: ["acs_users", "ok"],
9206
+ type: "object"
9207
+ }
9208
+ }
9209
+ },
9210
+ description: "OK"
9211
+ },
9212
+ 400: { description: "Bad Request" },
9213
+ 401: { description: "Unauthorized" }
9214
+ },
9215
+ security: [
9216
+ { client_session: [] },
9217
+ { pat_with_workspace: [] },
9218
+ { console_session: [] },
9219
+ { api_key: [] }
9220
+ ],
9221
+ summary: "/acs/users/unmanaged/list",
9222
+ tags: ["/acs"],
9223
+ "x-fern-sdk-group-name": ["acs", "users", "unmanaged"],
9224
+ "x-fern-sdk-method-name": "list",
9225
+ "x-fern-sdk-return-value": "acs_users"
9226
+ }
9227
+ },
9177
9228
  "/acs/users/unsuspend": {
9178
9229
  post: {
9179
9230
  operationId: "acsUsersUnsuspendPost",