@seamapi/types 1.226.0 → 1.227.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
@@ -7428,6 +7428,56 @@ var openapi_default = {
7428
7428
  "x-fern-sdk-return-value": "acs_access_groups"
7429
7429
  }
7430
7430
  },
7431
+ "/acs/access_groups/list_accessible_entrances": {
7432
+ post: {
7433
+ operationId: "acsAccessGroupsListAccessibleEntrancesPost",
7434
+ requestBody: {
7435
+ content: {
7436
+ "application/json": {
7437
+ schema: {
7438
+ properties: {
7439
+ acs_access_group_id: { format: "uuid", type: "string" }
7440
+ },
7441
+ required: ["acs_access_group_id"],
7442
+ type: "object"
7443
+ }
7444
+ }
7445
+ }
7446
+ },
7447
+ responses: {
7448
+ 200: {
7449
+ content: {
7450
+ "application/json": {
7451
+ schema: {
7452
+ properties: {
7453
+ acs_entrances: {
7454
+ items: { $ref: "#/components/schemas/acs_entrance" },
7455
+ type: "array"
7456
+ },
7457
+ ok: { type: "boolean" }
7458
+ },
7459
+ required: ["acs_entrances", "ok"],
7460
+ type: "object"
7461
+ }
7462
+ }
7463
+ },
7464
+ description: "OK"
7465
+ },
7466
+ 400: { description: "Bad Request" },
7467
+ 401: { description: "Unauthorized" }
7468
+ },
7469
+ security: [
7470
+ { api_key: [] },
7471
+ { pat_with_workspace: [] },
7472
+ { console_session: [] }
7473
+ ],
7474
+ summary: "/acs/access_groups/list_accessible_entrances",
7475
+ tags: ["/acs"],
7476
+ "x-fern-sdk-group-name": ["acs", "access_groups"],
7477
+ "x-fern-sdk-method-name": "list_accessible_entrances",
7478
+ "x-fern-sdk-return-value": "acs_entrances"
7479
+ }
7480
+ },
7431
7481
  "/acs/access_groups/list_users": {
7432
7482
  post: {
7433
7483
  operationId: "acsAccessGroupsListUsersPost",