@seamapi/types 1.443.0 → 1.444.1
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 +45 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +95 -1
- package/dist/index.cjs +45 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +45 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +51 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
package/dist/connect.cjs
CHANGED
|
@@ -31152,6 +31152,36 @@ var openapi_default = {
|
|
|
31152
31152
|
format: "uuid",
|
|
31153
31153
|
type: "string"
|
|
31154
31154
|
}
|
|
31155
|
+
},
|
|
31156
|
+
{
|
|
31157
|
+
in: "query",
|
|
31158
|
+
name: "device_id",
|
|
31159
|
+
required: false,
|
|
31160
|
+
schema: {
|
|
31161
|
+
description: "ID of the device for which you want to retrieve all access methods.",
|
|
31162
|
+
format: "uuid",
|
|
31163
|
+
type: "string"
|
|
31164
|
+
}
|
|
31165
|
+
},
|
|
31166
|
+
{
|
|
31167
|
+
in: "query",
|
|
31168
|
+
name: "acs_entrance_id",
|
|
31169
|
+
required: false,
|
|
31170
|
+
schema: {
|
|
31171
|
+
description: "ID of the entrance for which you want to retrieve all access methods.",
|
|
31172
|
+
format: "uuid",
|
|
31173
|
+
type: "string"
|
|
31174
|
+
}
|
|
31175
|
+
},
|
|
31176
|
+
{
|
|
31177
|
+
in: "query",
|
|
31178
|
+
name: "space_id",
|
|
31179
|
+
required: false,
|
|
31180
|
+
schema: {
|
|
31181
|
+
description: "ID of the space for which you want to retrieve all access methods.",
|
|
31182
|
+
format: "uuid",
|
|
31183
|
+
type: "string"
|
|
31184
|
+
}
|
|
31155
31185
|
}
|
|
31156
31186
|
],
|
|
31157
31187
|
responses: {
|
|
@@ -31202,6 +31232,21 @@ var openapi_default = {
|
|
|
31202
31232
|
description: "ID of access grant to list access methods for.",
|
|
31203
31233
|
format: "uuid",
|
|
31204
31234
|
type: "string"
|
|
31235
|
+
},
|
|
31236
|
+
acs_entrance_id: {
|
|
31237
|
+
description: "ID of the entrance for which you want to retrieve all access methods.",
|
|
31238
|
+
format: "uuid",
|
|
31239
|
+
type: "string"
|
|
31240
|
+
},
|
|
31241
|
+
device_id: {
|
|
31242
|
+
description: "ID of the device for which you want to retrieve all access methods.",
|
|
31243
|
+
format: "uuid",
|
|
31244
|
+
type: "string"
|
|
31245
|
+
},
|
|
31246
|
+
space_id: {
|
|
31247
|
+
description: "ID of the space for which you want to retrieve all access methods.",
|
|
31248
|
+
format: "uuid",
|
|
31249
|
+
type: "string"
|
|
31205
31250
|
}
|
|
31206
31251
|
},
|
|
31207
31252
|
required: ["access_grant_id"],
|