@seamapi/types 1.449.0 → 1.451.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
@@ -7117,6 +7117,10 @@ var openapi_default = {
7117
7117
  items: { format: "uuid", type: "string" },
7118
7118
  type: "array"
7119
7119
  },
7120
+ client_session_token: {
7121
+ description: "Client Session Token. Only returned if the Access Grant has a mobile_key access method.",
7122
+ type: "string"
7123
+ },
7120
7124
  created_at: {
7121
7125
  description: "Date and time at which the Access Grant was created.",
7122
7126
  format: "date-time",
@@ -7220,6 +7224,10 @@ var openapi_default = {
7220
7224
  format: "uuid",
7221
7225
  type: "string"
7222
7226
  },
7227
+ client_session_token: {
7228
+ description: "Token of the client session associated with the access method.",
7229
+ type: "string"
7230
+ },
7223
7231
  code: {
7224
7232
  description: "The actual PIN code for code access methods.",
7225
7233
  type: "string"
@@ -48386,6 +48394,7 @@ var openapi_default = {
48386
48394
  },
48387
48395
  type: "array"
48388
48396
  },
48397
+ is_draft: { type: "boolean" },
48389
48398
  name: { type: "string" },
48390
48399
  needs_review: { type: "boolean" },
48391
48400
  partner_resource_key: { type: "string" }
@@ -48481,6 +48490,7 @@ var openapi_default = {
48481
48490
  },
48482
48491
  type: "array"
48483
48492
  },
48493
+ is_draft: { type: "boolean" },
48484
48494
  name: { type: "string" },
48485
48495
  needs_review: { type: "boolean" },
48486
48496
  partner_resource_key: { type: "string" }
@@ -48569,7 +48579,8 @@ var openapi_default = {
48569
48579
  security: [
48570
48580
  { pat_with_workspace: [] },
48571
48581
  { console_session_with_workspace: [] },
48572
- { api_key: [] }
48582
+ { api_key: [] },
48583
+ { client_session_with_customer: [] }
48573
48584
  ],
48574
48585
  summary: "/spaces/add_acs_entrances",
48575
48586
  tags: [],
@@ -48624,7 +48635,8 @@ var openapi_default = {
48624
48635
  security: [
48625
48636
  { pat_with_workspace: [] },
48626
48637
  { console_session_with_workspace: [] },
48627
- { api_key: [] }
48638
+ { api_key: [] },
48639
+ { client_session_with_customer: [] }
48628
48640
  ],
48629
48641
  summary: "/spaces/add_acs_entrances",
48630
48642
  tags: [],
@@ -48681,7 +48693,8 @@ var openapi_default = {
48681
48693
  security: [
48682
48694
  { pat_with_workspace: [] },
48683
48695
  { console_session_with_workspace: [] },
48684
- { api_key: [] }
48696
+ { api_key: [] },
48697
+ { client_session_with_customer: [] }
48685
48698
  ],
48686
48699
  summary: "/spaces/add_devices",
48687
48700
  tags: [],
@@ -48736,7 +48749,8 @@ var openapi_default = {
48736
48749
  security: [
48737
48750
  { pat_with_workspace: [] },
48738
48751
  { console_session_with_workspace: [] },
48739
- { api_key: [] }
48752
+ { api_key: [] },
48753
+ { client_session_with_customer: [] }
48740
48754
  ],
48741
48755
  summary: "/spaces/add_devices",
48742
48756
  tags: [],
@@ -49218,6 +49232,17 @@ var openapi_default = {
49218
49232
  type: "string"
49219
49233
  }
49220
49234
  },
49235
+ {
49236
+ in: "query",
49237
+ name: "connected_account_id",
49238
+ schema: {
49239
+ description: "Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account.",
49240
+ format: "uuid",
49241
+ type: "string",
49242
+ "x-draft": "Needs review.",
49243
+ "x-undocumented": "Only used internally."
49244
+ }
49245
+ },
49221
49246
  {
49222
49247
  in: "query",
49223
49248
  name: "space_key",
@@ -49272,6 +49297,13 @@ var openapi_default = {
49272
49297
  "application/json": {
49273
49298
  schema: {
49274
49299
  properties: {
49300
+ connected_account_id: {
49301
+ description: "Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account.",
49302
+ format: "uuid",
49303
+ type: "string",
49304
+ "x-draft": "Needs review.",
49305
+ "x-undocumented": "Only used internally."
49306
+ },
49275
49307
  search: {
49276
49308
  description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
49277
49309
  minLength: 1,