@seamapi/types 1.460.1 → 1.461.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 +110 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +173 -0
- package/dist/index.cjs +110 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +142 -0
- package/lib/seam/connect/openapi.js +110 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +31 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +115 -0
- package/src/lib/seam/connect/route-types.ts +31 -0
package/dist/connect.cjs
CHANGED
|
@@ -30578,6 +30578,11 @@ var openapi_default = {
|
|
|
30578
30578
|
items: { format: "uuid", type: "string" },
|
|
30579
30579
|
type: "array"
|
|
30580
30580
|
},
|
|
30581
|
+
space_keys: {
|
|
30582
|
+
description: "Set of keys of existing spaces to which access is being granted.",
|
|
30583
|
+
items: { type: "string" },
|
|
30584
|
+
type: "array"
|
|
30585
|
+
},
|
|
30581
30586
|
starts_at: {
|
|
30582
30587
|
description: "Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30583
30588
|
type: "string"
|
|
@@ -44518,6 +44523,111 @@ var openapi_default = {
|
|
|
44518
44523
|
"x-title": "List Events"
|
|
44519
44524
|
}
|
|
44520
44525
|
},
|
|
44526
|
+
"/instant_keys/list": {
|
|
44527
|
+
get: {
|
|
44528
|
+
description: "Returns a list of all [instant keys](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).",
|
|
44529
|
+
operationId: "instantKeysListGet",
|
|
44530
|
+
parameters: [
|
|
44531
|
+
{
|
|
44532
|
+
in: "query",
|
|
44533
|
+
name: "user_identity_id",
|
|
44534
|
+
schema: {
|
|
44535
|
+
description: "ID of the user identity by which you want to filter the list of Instant Keys.",
|
|
44536
|
+
format: "uuid",
|
|
44537
|
+
type: "string"
|
|
44538
|
+
}
|
|
44539
|
+
}
|
|
44540
|
+
],
|
|
44541
|
+
responses: {
|
|
44542
|
+
200: {
|
|
44543
|
+
content: {
|
|
44544
|
+
"application/json": {
|
|
44545
|
+
schema: {
|
|
44546
|
+
properties: {
|
|
44547
|
+
instant_keys: {
|
|
44548
|
+
items: { $ref: "#/components/schemas/instant_key" },
|
|
44549
|
+
type: "array"
|
|
44550
|
+
},
|
|
44551
|
+
ok: { type: "boolean" }
|
|
44552
|
+
},
|
|
44553
|
+
required: ["instant_keys", "ok"],
|
|
44554
|
+
type: "object"
|
|
44555
|
+
}
|
|
44556
|
+
}
|
|
44557
|
+
},
|
|
44558
|
+
description: "OK"
|
|
44559
|
+
},
|
|
44560
|
+
400: { description: "Bad Request" },
|
|
44561
|
+
401: { description: "Unauthorized" }
|
|
44562
|
+
},
|
|
44563
|
+
security: [
|
|
44564
|
+
{ api_key: [] },
|
|
44565
|
+
{ pat_with_workspace: [] },
|
|
44566
|
+
{ console_session_with_workspace: [] }
|
|
44567
|
+
],
|
|
44568
|
+
summary: "/instant_keys/list",
|
|
44569
|
+
tags: [],
|
|
44570
|
+
"x-fern-sdk-group-name": ["instant_keys"],
|
|
44571
|
+
"x-fern-sdk-method-name": "list",
|
|
44572
|
+
"x-fern-sdk-return-value": "instant_keys",
|
|
44573
|
+
"x-response-key": "instant_keys",
|
|
44574
|
+
"x-title": "List Instant Keys"
|
|
44575
|
+
},
|
|
44576
|
+
post: {
|
|
44577
|
+
description: "Returns a list of all [instant keys](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).",
|
|
44578
|
+
operationId: "instantKeysListPost",
|
|
44579
|
+
requestBody: {
|
|
44580
|
+
content: {
|
|
44581
|
+
"application/json": {
|
|
44582
|
+
schema: {
|
|
44583
|
+
properties: {
|
|
44584
|
+
user_identity_id: {
|
|
44585
|
+
description: "ID of the user identity by which you want to filter the list of Instant Keys.",
|
|
44586
|
+
format: "uuid",
|
|
44587
|
+
type: "string"
|
|
44588
|
+
}
|
|
44589
|
+
},
|
|
44590
|
+
type: "object"
|
|
44591
|
+
}
|
|
44592
|
+
}
|
|
44593
|
+
}
|
|
44594
|
+
},
|
|
44595
|
+
responses: {
|
|
44596
|
+
200: {
|
|
44597
|
+
content: {
|
|
44598
|
+
"application/json": {
|
|
44599
|
+
schema: {
|
|
44600
|
+
properties: {
|
|
44601
|
+
instant_keys: {
|
|
44602
|
+
items: { $ref: "#/components/schemas/instant_key" },
|
|
44603
|
+
type: "array"
|
|
44604
|
+
},
|
|
44605
|
+
ok: { type: "boolean" }
|
|
44606
|
+
},
|
|
44607
|
+
required: ["instant_keys", "ok"],
|
|
44608
|
+
type: "object"
|
|
44609
|
+
}
|
|
44610
|
+
}
|
|
44611
|
+
},
|
|
44612
|
+
description: "OK"
|
|
44613
|
+
},
|
|
44614
|
+
400: { description: "Bad Request" },
|
|
44615
|
+
401: { description: "Unauthorized" }
|
|
44616
|
+
},
|
|
44617
|
+
security: [
|
|
44618
|
+
{ api_key: [] },
|
|
44619
|
+
{ pat_with_workspace: [] },
|
|
44620
|
+
{ console_session_with_workspace: [] }
|
|
44621
|
+
],
|
|
44622
|
+
summary: "/instant_keys/list",
|
|
44623
|
+
tags: [],
|
|
44624
|
+
"x-fern-sdk-group-name": ["instant_keys"],
|
|
44625
|
+
"x-fern-sdk-method-name": "list",
|
|
44626
|
+
"x-fern-sdk-return-value": "instant_keys",
|
|
44627
|
+
"x-response-key": "instant_keys",
|
|
44628
|
+
"x-title": "List Instant Keys"
|
|
44629
|
+
}
|
|
44630
|
+
},
|
|
44521
44631
|
"/locks/get": {
|
|
44522
44632
|
get: {
|
|
44523
44633
|
description: "Returns a specified [lock](https://docs.seam.co/latest/capability-guides/smart-locks). **Use `/devices/get` instead.**",
|