@seamapi/types 1.257.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
@@ -9897,6 +9897,90 @@ var openapi_default = {
9897
9897
  "x-undocumented": "Encoding a card is currently unimplemented."
9898
9898
  }
9899
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
+ },
9900
9984
  "/acs/encoders/read_card": {
9901
9985
  post: {
9902
9986
  operationId: "acsEncodersReadCardPost",