@seamapi/types 1.351.0 → 1.352.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 +44 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +39 -0
- package/lib/seam/connect/models/bridges/bridge_client_session.js +1 -0
- package/lib/seam/connect/models/bridges/bridge_client_session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +29 -0
- package/lib/seam/connect/openapi.js +35 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/bridges/bridge_client_session.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +40 -2
- package/src/lib/seam/connect/route-types.ts +10 -0
package/dist/connect.cjs
CHANGED
|
@@ -21142,7 +21142,16 @@ var openapi_default = {
|
|
|
21142
21142
|
type: "string"
|
|
21143
21143
|
},
|
|
21144
21144
|
created_before: { format: "date-time", type: "string" },
|
|
21145
|
-
limit: {
|
|
21145
|
+
limit: {
|
|
21146
|
+
default: 500,
|
|
21147
|
+
description: "Maximum number of records to return per page.",
|
|
21148
|
+
format: "float",
|
|
21149
|
+
type: "number"
|
|
21150
|
+
},
|
|
21151
|
+
page_cursor: {
|
|
21152
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
21153
|
+
type: "string"
|
|
21154
|
+
},
|
|
21146
21155
|
user_identity_email_address: {
|
|
21147
21156
|
description: "Email address of the user identity for which you want to retrieve all `acs_user`s.",
|
|
21148
21157
|
type: "string"
|
|
@@ -21172,9 +21181,25 @@ var openapi_default = {
|
|
|
21172
21181
|
items: { $ref: "#/components/schemas/acs_user" },
|
|
21173
21182
|
type: "array"
|
|
21174
21183
|
},
|
|
21175
|
-
ok: { type: "boolean" }
|
|
21184
|
+
ok: { type: "boolean" },
|
|
21185
|
+
pagination: {
|
|
21186
|
+
description: "Information about the current page of results.",
|
|
21187
|
+
properties: {
|
|
21188
|
+
has_next_page: {
|
|
21189
|
+
description: "Indicates whether there is another page of results after this one.",
|
|
21190
|
+
type: "boolean"
|
|
21191
|
+
},
|
|
21192
|
+
next_page_cursor: {
|
|
21193
|
+
description: "Opaque value that can be used to select the next page of results via the `page_cursor` parameter.",
|
|
21194
|
+
nullable: true,
|
|
21195
|
+
type: "string"
|
|
21196
|
+
}
|
|
21197
|
+
},
|
|
21198
|
+
required: ["next_page_cursor", "has_next_page"],
|
|
21199
|
+
type: "object"
|
|
21200
|
+
}
|
|
21176
21201
|
},
|
|
21177
|
-
required: ["acs_users", "ok"],
|
|
21202
|
+
required: ["acs_users", "pagination", "ok"],
|
|
21178
21203
|
type: "object"
|
|
21179
21204
|
}
|
|
21180
21205
|
}
|
|
@@ -25965,7 +25990,8 @@ var openapi_default = {
|
|
|
25965
25990
|
"bridge_client_machine_identifier_key"
|
|
25966
25991
|
],
|
|
25967
25992
|
type: "object",
|
|
25968
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
25993
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
25994
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
25969
25995
|
},
|
|
25970
25996
|
ok: { type: "boolean" }
|
|
25971
25997
|
},
|
|
@@ -25991,7 +26017,8 @@ var openapi_default = {
|
|
|
25991
26017
|
"x-fern-sdk-method-name": "create",
|
|
25992
26018
|
"x-fern-sdk-return-value": "bridge_client_session",
|
|
25993
26019
|
"x-response-key": "bridge_client_session",
|
|
25994
|
-
"x-title": "Create a Bridge Client Session"
|
|
26020
|
+
"x-title": "Create a Bridge Client Session",
|
|
26021
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
25995
26022
|
}
|
|
25996
26023
|
},
|
|
25997
26024
|
"/seam/bridge/v1/bridge_client_sessions/get": {
|
|
@@ -26042,7 +26069,8 @@ var openapi_default = {
|
|
|
26042
26069
|
"bridge_client_machine_identifier_key"
|
|
26043
26070
|
],
|
|
26044
26071
|
type: "object",
|
|
26045
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
26072
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
26073
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26046
26074
|
},
|
|
26047
26075
|
ok: { type: "boolean" }
|
|
26048
26076
|
},
|
|
@@ -26061,7 +26089,8 @@ var openapi_default = {
|
|
|
26061
26089
|
tags: [],
|
|
26062
26090
|
"x-fern-ignore": true,
|
|
26063
26091
|
"x-response-key": "bridge_client_session",
|
|
26064
|
-
"x-title": "Get a Bridge Client Session"
|
|
26092
|
+
"x-title": "Get a Bridge Client Session",
|
|
26093
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26065
26094
|
},
|
|
26066
26095
|
post: {
|
|
26067
26096
|
description: "Returns the bridge client session associated with the session token used.",
|
|
@@ -26110,7 +26139,8 @@ var openapi_default = {
|
|
|
26110
26139
|
"bridge_client_machine_identifier_key"
|
|
26111
26140
|
],
|
|
26112
26141
|
type: "object",
|
|
26113
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
26142
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
26143
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26114
26144
|
},
|
|
26115
26145
|
ok: { type: "boolean" }
|
|
26116
26146
|
},
|
|
@@ -26136,7 +26166,8 @@ var openapi_default = {
|
|
|
26136
26166
|
"x-fern-sdk-method-name": "get",
|
|
26137
26167
|
"x-fern-sdk-return-value": "bridge_client_session",
|
|
26138
26168
|
"x-response-key": "bridge_client_session",
|
|
26139
|
-
"x-title": "Get a Bridge Client Session"
|
|
26169
|
+
"x-title": "Get a Bridge Client Session",
|
|
26170
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26140
26171
|
}
|
|
26141
26172
|
},
|
|
26142
26173
|
"/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code": {
|
|
@@ -26187,7 +26218,8 @@ var openapi_default = {
|
|
|
26187
26218
|
"bridge_client_machine_identifier_key"
|
|
26188
26219
|
],
|
|
26189
26220
|
type: "object",
|
|
26190
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
26221
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
26222
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26191
26223
|
},
|
|
26192
26224
|
ok: { type: "boolean" }
|
|
26193
26225
|
},
|
|
@@ -26213,7 +26245,8 @@ var openapi_default = {
|
|
|
26213
26245
|
"x-fern-sdk-method-name": "regenerate_pairing_code",
|
|
26214
26246
|
"x-fern-sdk-return-value": "bridge_client_session",
|
|
26215
26247
|
"x-response-key": "bridge_client_session",
|
|
26216
|
-
"x-title": "Regenerate a Bridge Client Session Pairing Code"
|
|
26248
|
+
"x-title": "Regenerate a Bridge Client Session Pairing Code",
|
|
26249
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26217
26250
|
}
|
|
26218
26251
|
},
|
|
26219
26252
|
"/thermostats/activate_climate_preset": {
|