@seamapi/types 1.782.0 → 1.784.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
@@ -6291,6 +6291,7 @@ var space = zod.z.object({
6291
6291
  created_at: zod.z.string().datetime().describe("Date and time at which the space was created."),
6292
6292
  device_count: zod.z.number().describe("Number of devices in the space."),
6293
6293
  acs_entrance_count: zod.z.number().describe("Number of entrances in the space."),
6294
+ customer_key: zod.z.string().optional().describe("Customer key associated with the space."),
6294
6295
  parent_space_id: zod.z.string().uuid().optional().describe(`
6295
6296
  ---
6296
6297
  undocumented: Only used internally.
@@ -29514,6 +29515,10 @@ var openapi_default = {
29514
29515
  format: "date-time",
29515
29516
  type: "string"
29516
29517
  },
29518
+ customer_key: {
29519
+ description: "Customer key associated with the space.",
29520
+ type: "string"
29521
+ },
29517
29522
  device_count: {
29518
29523
  description: "Number of devices in the space.",
29519
29524
  format: "float",
@@ -38167,6 +38172,15 @@ var openapi_default = {
38167
38172
  type: "string"
38168
38173
  }
38169
38174
  },
38175
+ {
38176
+ in: "query",
38177
+ name: "access_code_id",
38178
+ schema: {
38179
+ description: "ID of the access code by which you want to filter the list of Access Grants.",
38180
+ format: "uuid",
38181
+ type: "string"
38182
+ }
38183
+ },
38170
38184
  {
38171
38185
  in: "query",
38172
38186
  name: "access_grant_key",
@@ -38231,6 +38245,11 @@ var openapi_default = {
38231
38245
  "application/json": {
38232
38246
  schema: {
38233
38247
  properties: {
38248
+ access_code_id: {
38249
+ description: "ID of the access code by which you want to filter the list of Access Grants.",
38250
+ format: "uuid",
38251
+ type: "string"
38252
+ },
38234
38253
  access_grant_ids: {
38235
38254
  description: "IDs of the access grants to retrieve.",
38236
38255
  items: { format: "uuid", type: "string" },
@@ -41570,6 +41589,15 @@ var openapi_default = {
41570
41589
  format: "uuid",
41571
41590
  type: "string"
41572
41591
  }
41592
+ },
41593
+ {
41594
+ in: "query",
41595
+ name: "access_code_id",
41596
+ schema: {
41597
+ description: "ID of the access code for which you want to retrieve all access methods.",
41598
+ format: "uuid",
41599
+ type: "string"
41600
+ }
41573
41601
  }
41574
41602
  ],
41575
41603
  responses: {
@@ -41617,6 +41645,11 @@ var openapi_default = {
41617
41645
  "application/json": {
41618
41646
  schema: {
41619
41647
  properties: {
41648
+ access_code_id: {
41649
+ description: "ID of the access code for which you want to retrieve all access methods.",
41650
+ format: "uuid",
41651
+ type: "string"
41652
+ },
41620
41653
  access_grant_id: {
41621
41654
  description: "ID of Access Grant to list access methods for.",
41622
41655
  format: "uuid",
@@ -74043,7 +74076,7 @@ var openapi_default = {
74043
74076
  in: "query",
74044
74077
  name: "search",
74045
74078
  schema: {
74046
- description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
74079
+ description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.",
74047
74080
  minLength: 1,
74048
74081
  type: "string"
74049
74082
  }
@@ -74156,7 +74189,7 @@ var openapi_default = {
74156
74189
  type: "string"
74157
74190
  },
74158
74191
  search: {
74159
- description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
74192
+ description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.",
74160
74193
  minLength: 1,
74161
74194
  type: "string"
74162
74195
  },