@seamapi/types 1.172.0 → 1.173.1

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
@@ -5082,6 +5082,56 @@ var openapi_default = {
5082
5082
  "x-fern-sdk-return-value": "acs_credentials"
5083
5083
  }
5084
5084
  },
5085
+ "/acs/credentials/list_accessible_entrances": {
5086
+ post: {
5087
+ operationId: "acsCredentialsListAccessibleEntrancesPost",
5088
+ requestBody: {
5089
+ content: {
5090
+ "application/json": {
5091
+ schema: {
5092
+ properties: {
5093
+ acs_credential_id: { format: "uuid", type: "string" }
5094
+ },
5095
+ required: ["acs_credential_id"],
5096
+ type: "object"
5097
+ }
5098
+ }
5099
+ }
5100
+ },
5101
+ responses: {
5102
+ 200: {
5103
+ content: {
5104
+ "application/json": {
5105
+ schema: {
5106
+ properties: {
5107
+ acs_entrances: {
5108
+ items: { $ref: "#/components/schemas/acs_entrance" },
5109
+ type: "array"
5110
+ },
5111
+ ok: { type: "boolean" }
5112
+ },
5113
+ required: ["acs_entrances", "ok"],
5114
+ type: "object"
5115
+ }
5116
+ }
5117
+ },
5118
+ description: "OK"
5119
+ },
5120
+ 400: { description: "Bad Request" },
5121
+ 401: { description: "Unauthorized" }
5122
+ },
5123
+ security: [
5124
+ { api_key: [] },
5125
+ { pat_with_workspace: [] },
5126
+ { console_session: [] }
5127
+ ],
5128
+ summary: "/acs/credentials/list_accessible_entrances",
5129
+ tags: ["/acs"],
5130
+ "x-fern-sdk-group-name": ["acs", "credentials"],
5131
+ "x-fern-sdk-method-name": "list_accessible_entrances",
5132
+ "x-fern-sdk-return-value": "acs_entrances"
5133
+ }
5134
+ },
5085
5135
  "/acs/credentials/unassign": {
5086
5136
  patch: {
5087
5137
  operationId: "acsCredentialsUnassignPatch",
@@ -9566,6 +9616,10 @@ var openapi_default = {
9566
9616
  },
9567
9617
  type: "object"
9568
9618
  },
9619
+ credential_manager_acs_system_id: {
9620
+ format: "uuid",
9621
+ type: "string"
9622
+ },
9569
9623
  custom_sdk_installation_id: { type: "string" },
9570
9624
  phone_metadata: {
9571
9625
  default: {},
@@ -9589,7 +9643,10 @@ var openapi_default = {
9589
9643
  },
9590
9644
  user_identity_id: { format: "uuid", type: "string" }
9591
9645
  },
9592
- required: ["user_identity_id"],
9646
+ required: [
9647
+ "user_identity_id",
9648
+ "credential_manager_acs_system_id"
9649
+ ],
9593
9650
  type: "object"
9594
9651
  }
9595
9652
  }