@seamapi/types 1.386.1 → 1.387.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 +17 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -0
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +15 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +17 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -22025,6 +22025,17 @@ var openapi_default = {
|
|
|
22025
22025
|
format: "uuid",
|
|
22026
22026
|
type: "string"
|
|
22027
22027
|
},
|
|
22028
|
+
limit: {
|
|
22029
|
+
default: 55e3,
|
|
22030
|
+
description: "Numerical limit on the number of access codes to return.",
|
|
22031
|
+
format: "float",
|
|
22032
|
+
type: "number"
|
|
22033
|
+
},
|
|
22034
|
+
page_cursor: {
|
|
22035
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
22036
|
+
nullable: true,
|
|
22037
|
+
type: "string"
|
|
22038
|
+
},
|
|
22028
22039
|
user_identifier_key: {
|
|
22029
22040
|
description: "Your user ID for the user by which to filter access codes.",
|
|
22030
22041
|
type: "string"
|
|
@@ -22045,9 +22056,10 @@ var openapi_default = {
|
|
|
22045
22056
|
items: { $ref: "#/components/schemas/access_code" },
|
|
22046
22057
|
type: "array"
|
|
22047
22058
|
},
|
|
22048
|
-
ok: { type: "boolean" }
|
|
22059
|
+
ok: { type: "boolean" },
|
|
22060
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
22049
22061
|
},
|
|
22050
|
-
required: ["access_codes", "ok"],
|
|
22062
|
+
required: ["access_codes", "pagination", "ok"],
|
|
22051
22063
|
type: "object"
|
|
22052
22064
|
}
|
|
22053
22065
|
}
|
|
@@ -32105,7 +32117,7 @@ var openapi_default = {
|
|
|
32105
32117
|
},
|
|
32106
32118
|
"/seam/instant_key/v1/client_sessions/exchange_short_code": {
|
|
32107
32119
|
post: {
|
|
32108
|
-
description: "Exchanges a short code for a Client Session Token (CST).\nThis endpoint is used by mobile apps to securely retrieve a client session token
|
|
32120
|
+
description: "Exchanges a short code for a Client Session Token (CST).\nThis endpoint is used by mobile apps to securely retrieve a client session token\nusing a short code obtained from an instant key URL.",
|
|
32109
32121
|
operationId: "seamInstantKeyV1ClientSessionsExchangeShortCodePost",
|
|
32110
32122
|
requestBody: {
|
|
32111
32123
|
content: {
|
|
@@ -32156,7 +32168,8 @@ var openapi_default = {
|
|
|
32156
32168
|
"x-fern-sdk-method-name": "exchange_short_code",
|
|
32157
32169
|
"x-fern-sdk-return-value": "client_session",
|
|
32158
32170
|
"x-response-key": "client_session",
|
|
32159
|
-
"x-title": "Exchange Instant Key Short Code"
|
|
32171
|
+
"x-title": "Exchange Instant Key Short Code",
|
|
32172
|
+
"x-undocumented": "Seam Instant Key only."
|
|
32160
32173
|
}
|
|
32161
32174
|
},
|
|
32162
32175
|
"/thermostats/activate_climate_preset": {
|