@seamapi/types 1.449.0 → 1.450.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 +32 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +84 -0
- package/dist/index.cjs +32 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +66 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +15 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +31 -0
- package/src/lib/seam/connect/route-types.ts +15 -0
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",
|
|
@@ -48386,6 +48390,7 @@ var openapi_default = {
|
|
|
48386
48390
|
},
|
|
48387
48391
|
type: "array"
|
|
48388
48392
|
},
|
|
48393
|
+
is_draft: { type: "boolean" },
|
|
48389
48394
|
name: { type: "string" },
|
|
48390
48395
|
needs_review: { type: "boolean" },
|
|
48391
48396
|
partner_resource_key: { type: "string" }
|
|
@@ -48481,6 +48486,7 @@ var openapi_default = {
|
|
|
48481
48486
|
},
|
|
48482
48487
|
type: "array"
|
|
48483
48488
|
},
|
|
48489
|
+
is_draft: { type: "boolean" },
|
|
48484
48490
|
name: { type: "string" },
|
|
48485
48491
|
needs_review: { type: "boolean" },
|
|
48486
48492
|
partner_resource_key: { type: "string" }
|
|
@@ -48569,7 +48575,8 @@ var openapi_default = {
|
|
|
48569
48575
|
security: [
|
|
48570
48576
|
{ pat_with_workspace: [] },
|
|
48571
48577
|
{ console_session_with_workspace: [] },
|
|
48572
|
-
{ api_key: [] }
|
|
48578
|
+
{ api_key: [] },
|
|
48579
|
+
{ client_session_with_customer: [] }
|
|
48573
48580
|
],
|
|
48574
48581
|
summary: "/spaces/add_acs_entrances",
|
|
48575
48582
|
tags: [],
|
|
@@ -48624,7 +48631,8 @@ var openapi_default = {
|
|
|
48624
48631
|
security: [
|
|
48625
48632
|
{ pat_with_workspace: [] },
|
|
48626
48633
|
{ console_session_with_workspace: [] },
|
|
48627
|
-
{ api_key: [] }
|
|
48634
|
+
{ api_key: [] },
|
|
48635
|
+
{ client_session_with_customer: [] }
|
|
48628
48636
|
],
|
|
48629
48637
|
summary: "/spaces/add_acs_entrances",
|
|
48630
48638
|
tags: [],
|
|
@@ -48681,7 +48689,8 @@ var openapi_default = {
|
|
|
48681
48689
|
security: [
|
|
48682
48690
|
{ pat_with_workspace: [] },
|
|
48683
48691
|
{ console_session_with_workspace: [] },
|
|
48684
|
-
{ api_key: [] }
|
|
48692
|
+
{ api_key: [] },
|
|
48693
|
+
{ client_session_with_customer: [] }
|
|
48685
48694
|
],
|
|
48686
48695
|
summary: "/spaces/add_devices",
|
|
48687
48696
|
tags: [],
|
|
@@ -48736,7 +48745,8 @@ var openapi_default = {
|
|
|
48736
48745
|
security: [
|
|
48737
48746
|
{ pat_with_workspace: [] },
|
|
48738
48747
|
{ console_session_with_workspace: [] },
|
|
48739
|
-
{ api_key: [] }
|
|
48748
|
+
{ api_key: [] },
|
|
48749
|
+
{ client_session_with_customer: [] }
|
|
48740
48750
|
],
|
|
48741
48751
|
summary: "/spaces/add_devices",
|
|
48742
48752
|
tags: [],
|
|
@@ -49218,6 +49228,17 @@ var openapi_default = {
|
|
|
49218
49228
|
type: "string"
|
|
49219
49229
|
}
|
|
49220
49230
|
},
|
|
49231
|
+
{
|
|
49232
|
+
in: "query",
|
|
49233
|
+
name: "connected_account_id",
|
|
49234
|
+
schema: {
|
|
49235
|
+
description: "Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account.",
|
|
49236
|
+
format: "uuid",
|
|
49237
|
+
type: "string",
|
|
49238
|
+
"x-draft": "Needs review.",
|
|
49239
|
+
"x-undocumented": "Only used internally."
|
|
49240
|
+
}
|
|
49241
|
+
},
|
|
49221
49242
|
{
|
|
49222
49243
|
in: "query",
|
|
49223
49244
|
name: "space_key",
|
|
@@ -49272,6 +49293,13 @@ var openapi_default = {
|
|
|
49272
49293
|
"application/json": {
|
|
49273
49294
|
schema: {
|
|
49274
49295
|
properties: {
|
|
49296
|
+
connected_account_id: {
|
|
49297
|
+
description: "Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account.",
|
|
49298
|
+
format: "uuid",
|
|
49299
|
+
type: "string",
|
|
49300
|
+
"x-draft": "Needs review.",
|
|
49301
|
+
"x-undocumented": "Only used internally."
|
|
49302
|
+
},
|
|
49275
49303
|
search: {
|
|
49276
49304
|
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
49277
49305
|
minLength: 1,
|