@seamapi/types 1.92.0 → 1.93.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
@@ -4891,6 +4891,106 @@ var openapi_default = {
4891
4891
  "x-fern-sdk-method-name": "list"
4892
4892
  }
4893
4893
  },
4894
+ "/acs/entrances/list_credentials_with_access": {
4895
+ post: {
4896
+ operationId: "acsEntrancesListCredentialsWithAccessPost",
4897
+ requestBody: {
4898
+ content: {
4899
+ "application/json": {
4900
+ schema: {
4901
+ properties: {
4902
+ acs_entrance_id: { format: "uuid", type: "string" },
4903
+ acs_entrance_ids: {
4904
+ items: { format: "uuid", type: "string" },
4905
+ type: "array"
4906
+ },
4907
+ include_if: {
4908
+ items: {
4909
+ enum: ["visionline_metadata.is_valid"],
4910
+ type: "string"
4911
+ },
4912
+ type: "array"
4913
+ }
4914
+ },
4915
+ type: "object"
4916
+ }
4917
+ }
4918
+ }
4919
+ },
4920
+ responses: {
4921
+ 200: {
4922
+ content: {
4923
+ "application/json": {
4924
+ schema: {
4925
+ properties: {
4926
+ acs_credentials: {
4927
+ items: {
4928
+ properties: {
4929
+ access_method: {
4930
+ enum: ["code", "card", "mobile_key"],
4931
+ type: "string"
4932
+ },
4933
+ acs_credential_id: { format: "uuid", type: "string" },
4934
+ acs_credential_pool_id: {
4935
+ format: "uuid",
4936
+ type: "string"
4937
+ },
4938
+ acs_system_id: { format: "uuid", type: "string" },
4939
+ acs_user_id: { format: "uuid", type: "string" },
4940
+ code: { nullable: true, type: "string" },
4941
+ created_at: { format: "date-time", type: "string" },
4942
+ display_name: { minLength: 1, type: "string" },
4943
+ ends_at: { type: "string" },
4944
+ external_type: {
4945
+ enum: [
4946
+ "pti_card",
4947
+ "brivo_credential",
4948
+ "hid_credential",
4949
+ "visionline_card"
4950
+ ],
4951
+ type: "string"
4952
+ },
4953
+ external_type_display_name: { type: "string" },
4954
+ is_multi_phone_sync_credential: { type: "boolean" },
4955
+ starts_at: { type: "string" },
4956
+ workspace_id: { format: "uuid", type: "string" }
4957
+ },
4958
+ required: [
4959
+ "acs_credential_id",
4960
+ "acs_system_id",
4961
+ "display_name",
4962
+ "access_method",
4963
+ "created_at",
4964
+ "workspace_id"
4965
+ ],
4966
+ type: "object"
4967
+ },
4968
+ type: "array"
4969
+ },
4970
+ ok: { type: "boolean" }
4971
+ },
4972
+ required: ["acs_credentials", "ok"],
4973
+ type: "object"
4974
+ }
4975
+ }
4976
+ },
4977
+ description: "OK"
4978
+ },
4979
+ 400: { description: "Bad Request" },
4980
+ 401: { description: "Unauthorized" }
4981
+ },
4982
+ security: [
4983
+ { client_session: [] },
4984
+ { pat_with_workspace: [] },
4985
+ { console_session: [] },
4986
+ { api_key: [] }
4987
+ ],
4988
+ summary: "/acs/entrances/list_credentials_with_access",
4989
+ tags: ["/acs"],
4990
+ "x-fern-sdk-group-name": ["acs", "entrances"],
4991
+ "x-fern-sdk-method-name": "list_credentials_with_access"
4992
+ }
4993
+ },
4894
4994
  "/acs/systems/get": {
4895
4995
  post: {
4896
4996
  operationId: "acsSystemsGetPost",