@seamapi/types 1.441.1 → 1.442.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
@@ -7206,6 +7206,10 @@ var openapi_default = {
7206
7206
  format: "uuid",
7207
7207
  type: "string"
7208
7208
  },
7209
+ code: {
7210
+ description: "The actual PIN code for code access methods.",
7211
+ type: "string"
7212
+ },
7209
7213
  created_at: {
7210
7214
  description: "Date and time at which the access method was created.",
7211
7215
  format: "date-time",
@@ -34623,6 +34627,15 @@ var openapi_default = {
34623
34627
  items: { format: "uuid", type: "string" },
34624
34628
  type: "array"
34625
34629
  }
34630
+ },
34631
+ {
34632
+ in: "query",
34633
+ name: "search",
34634
+ schema: {
34635
+ description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
34636
+ minLength: 1,
34637
+ type: "string"
34638
+ }
34626
34639
  }
34627
34640
  ],
34628
34641
  responses: {
@@ -34706,6 +34719,11 @@ var openapi_default = {
34706
34719
  type: "string",
34707
34720
  "x-deprecated": "Use `space_id`."
34708
34721
  },
34722
+ search: {
34723
+ description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
34724
+ minLength: 1,
34725
+ type: "string"
34726
+ },
34709
34727
  space_id: {
34710
34728
  description: "ID of the space for which you want to list entrances.",
34711
34729
  format: "uuid",
@@ -49019,6 +49037,17 @@ var openapi_default = {
49019
49037
  get: {
49020
49038
  description: "Returns a list of all spaces.",
49021
49039
  operationId: "spacesListGet",
49040
+ parameters: [
49041
+ {
49042
+ in: "query",
49043
+ name: "search",
49044
+ schema: {
49045
+ description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
49046
+ minLength: 1,
49047
+ type: "string"
49048
+ }
49049
+ }
49050
+ ],
49022
49051
  responses: {
49023
49052
  200: {
49024
49053
  content: {
@@ -49058,6 +49087,22 @@ var openapi_default = {
49058
49087
  post: {
49059
49088
  description: "Returns a list of all spaces.",
49060
49089
  operationId: "spacesListPost",
49090
+ requestBody: {
49091
+ content: {
49092
+ "application/json": {
49093
+ schema: {
49094
+ properties: {
49095
+ search: {
49096
+ description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
49097
+ minLength: 1,
49098
+ type: "string"
49099
+ }
49100
+ },
49101
+ type: "object"
49102
+ }
49103
+ }
49104
+ }
49105
+ },
49061
49106
  responses: {
49062
49107
  200: {
49063
49108
  content: {