@seamapi/types 1.256.0 → 1.258.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
@@ -1154,6 +1154,7 @@ var acs_credential_visionline_metadata = zod.z.object({
1154
1154
  guest_acs_entrance_ids: zod.z.array(zod.z.string().uuid()).optional(),
1155
1155
  common_acs_entrance_ids: zod.z.array(zod.z.string().uuid()).optional(),
1156
1156
  is_valid: zod.z.boolean().optional(),
1157
+ auto_join: zod.z.boolean().optional(),
1157
1158
  card_id: zod.z.string().optional(),
1158
1159
  credential_id: zod.z.string().optional()
1159
1160
  });
@@ -2765,6 +2766,7 @@ var openapi_default = {
2765
2766
  starts_at: { type: "string" },
2766
2767
  visionline_metadata: {
2767
2768
  properties: {
2769
+ auto_join: { type: "boolean" },
2768
2770
  card_function_type: { enum: ["guest", "staff"], type: "string" },
2769
2771
  card_id: { type: "string" },
2770
2772
  common_acs_entrance_ids: {
@@ -9002,6 +9004,7 @@ var openapi_default = {
9002
9004
  format: "uuid",
9003
9005
  type: "string"
9004
9006
  },
9007
+ auto_join: { type: "boolean" },
9005
9008
  card_format: {
9006
9009
  enum: ["TLCode", "rfid48"],
9007
9010
  type: "string"
@@ -9474,6 +9477,7 @@ var openapi_default = {
9474
9477
  starts_at: { type: "string" },
9475
9478
  visionline_metadata: {
9476
9479
  properties: {
9480
+ auto_join: { type: "boolean" },
9477
9481
  card_function_type: {
9478
9482
  enum: ["guest", "staff"],
9479
9483
  type: "string"
@@ -9658,6 +9662,7 @@ var openapi_default = {
9658
9662
  starts_at: { type: "string" },
9659
9663
  visionline_metadata: {
9660
9664
  properties: {
9665
+ auto_join: { type: "boolean" },
9661
9666
  card_function_type: {
9662
9667
  enum: ["guest", "staff"],
9663
9668
  type: "string"
@@ -9892,6 +9897,90 @@ var openapi_default = {
9892
9897
  "x-undocumented": "Encoding a card is currently unimplemented."
9893
9898
  }
9894
9899
  },
9900
+ "/acs/encoders/list": {
9901
+ post: {
9902
+ operationId: "acsEncodersListPost",
9903
+ requestBody: {
9904
+ content: {
9905
+ "application/json": {
9906
+ schema: {
9907
+ oneOf: [
9908
+ {
9909
+ properties: {
9910
+ acs_system_ids: {
9911
+ items: { format: "uuid", type: "string" },
9912
+ type: "array"
9913
+ },
9914
+ device_ids: {
9915
+ items: { format: "uuid", type: "string" },
9916
+ type: "array"
9917
+ },
9918
+ limit: { default: 500, format: "float", type: "number" }
9919
+ },
9920
+ required: ["acs_system_ids", "device_ids"],
9921
+ type: "object"
9922
+ },
9923
+ {
9924
+ properties: {
9925
+ device_ids: {
9926
+ items: { format: "uuid", type: "string" },
9927
+ type: "array"
9928
+ },
9929
+ limit: { default: 500, format: "float", type: "number" }
9930
+ },
9931
+ required: ["device_ids"],
9932
+ type: "object"
9933
+ },
9934
+ {
9935
+ properties: {
9936
+ acs_system_ids: {
9937
+ items: { format: "uuid", type: "string" },
9938
+ type: "array"
9939
+ },
9940
+ limit: { default: 500, format: "float", type: "number" }
9941
+ },
9942
+ required: ["acs_system_ids"],
9943
+ type: "object"
9944
+ }
9945
+ ]
9946
+ }
9947
+ }
9948
+ }
9949
+ },
9950
+ responses: {
9951
+ 200: {
9952
+ content: {
9953
+ "application/json": {
9954
+ schema: {
9955
+ properties: {
9956
+ devices: {
9957
+ items: { $ref: "#/components/schemas/device" },
9958
+ type: "array"
9959
+ },
9960
+ ok: { type: "boolean" }
9961
+ },
9962
+ required: ["devices", "ok"],
9963
+ type: "object"
9964
+ }
9965
+ }
9966
+ },
9967
+ description: "OK"
9968
+ },
9969
+ 400: { description: "Bad Request" },
9970
+ 401: { description: "Unauthorized" }
9971
+ },
9972
+ security: [
9973
+ { pat_with_workspace: [] },
9974
+ { console_session: [] },
9975
+ { api_key: [] }
9976
+ ],
9977
+ summary: "/acs/encoders/list",
9978
+ tags: ["/acs"],
9979
+ "x-fern-sdk-group-name": ["acs", "encoders"],
9980
+ "x-fern-sdk-method-name": "list",
9981
+ "x-fern-sdk-return-value": "devices"
9982
+ }
9983
+ },
9895
9984
  "/acs/encoders/read_card": {
9896
9985
  post: {
9897
9986
  operationId: "acsEncodersReadCardPost",