@seamapi/types 1.350.0 → 1.351.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 +70 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +138 -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 +78 -0
- package/lib/seam/connect/openapi.js +62 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -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 +63 -0
- package/src/lib/seam/connect/route-types.ts +64 -0
package/dist/connect.cjs
CHANGED
|
@@ -25659,6 +25659,60 @@ var openapi_default = {
|
|
|
25659
25659
|
"x-title": "Deactivate a Phone"
|
|
25660
25660
|
}
|
|
25661
25661
|
},
|
|
25662
|
+
"/phones/get": {
|
|
25663
|
+
post: {
|
|
25664
|
+
description: "Returns a single phone entry matching the provided `device_id`.",
|
|
25665
|
+
operationId: "phonesGetPost",
|
|
25666
|
+
requestBody: {
|
|
25667
|
+
content: {
|
|
25668
|
+
"application/json": {
|
|
25669
|
+
schema: {
|
|
25670
|
+
properties: {
|
|
25671
|
+
device_id: {
|
|
25672
|
+
description: "Device ID of the desired phone.",
|
|
25673
|
+
format: "uuid",
|
|
25674
|
+
type: "string"
|
|
25675
|
+
}
|
|
25676
|
+
},
|
|
25677
|
+
required: ["device_id"],
|
|
25678
|
+
type: "object"
|
|
25679
|
+
}
|
|
25680
|
+
}
|
|
25681
|
+
}
|
|
25682
|
+
},
|
|
25683
|
+
responses: {
|
|
25684
|
+
200: {
|
|
25685
|
+
content: {
|
|
25686
|
+
"application/json": {
|
|
25687
|
+
schema: {
|
|
25688
|
+
properties: {
|
|
25689
|
+
ok: { type: "boolean" },
|
|
25690
|
+
phone: { $ref: "#/components/schemas/phone" }
|
|
25691
|
+
},
|
|
25692
|
+
required: ["phone", "ok"],
|
|
25693
|
+
type: "object"
|
|
25694
|
+
}
|
|
25695
|
+
}
|
|
25696
|
+
},
|
|
25697
|
+
description: "OK"
|
|
25698
|
+
},
|
|
25699
|
+
400: { description: "Bad Request" },
|
|
25700
|
+
401: { description: "Unauthorized" }
|
|
25701
|
+
},
|
|
25702
|
+
security: [
|
|
25703
|
+
{ api_key: [] },
|
|
25704
|
+
{ pat_with_workspace: [] },
|
|
25705
|
+
{ console_session_with_workspace: [] }
|
|
25706
|
+
],
|
|
25707
|
+
summary: "/phones/get",
|
|
25708
|
+
tags: ["/phones"],
|
|
25709
|
+
"x-fern-sdk-group-name": ["phones"],
|
|
25710
|
+
"x-fern-sdk-method-name": "get",
|
|
25711
|
+
"x-fern-sdk-return-value": "phone",
|
|
25712
|
+
"x-response-key": "phone",
|
|
25713
|
+
"x-title": "Get Phone"
|
|
25714
|
+
}
|
|
25715
|
+
},
|
|
25662
25716
|
"/phones/list": {
|
|
25663
25717
|
post: {
|
|
25664
25718
|
description: "Returns a list of all phones. To filter the list of returned phones by a specific owner user identity or credential, include the `owner_user_identity_id` or `acs_credential_id`, respectively, in the request body.",
|
|
@@ -25911,7 +25965,8 @@ var openapi_default = {
|
|
|
25911
25965
|
"bridge_client_machine_identifier_key"
|
|
25912
25966
|
],
|
|
25913
25967
|
type: "object",
|
|
25914
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
25968
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
25969
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
25915
25970
|
},
|
|
25916
25971
|
ok: { type: "boolean" }
|
|
25917
25972
|
},
|
|
@@ -25937,7 +25992,8 @@ var openapi_default = {
|
|
|
25937
25992
|
"x-fern-sdk-method-name": "create",
|
|
25938
25993
|
"x-fern-sdk-return-value": "bridge_client_session",
|
|
25939
25994
|
"x-response-key": "bridge_client_session",
|
|
25940
|
-
"x-title": "Create a Bridge Client Session"
|
|
25995
|
+
"x-title": "Create a Bridge Client Session",
|
|
25996
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
25941
25997
|
}
|
|
25942
25998
|
},
|
|
25943
25999
|
"/seam/bridge/v1/bridge_client_sessions/get": {
|
|
@@ -25988,7 +26044,8 @@ var openapi_default = {
|
|
|
25988
26044
|
"bridge_client_machine_identifier_key"
|
|
25989
26045
|
],
|
|
25990
26046
|
type: "object",
|
|
25991
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
26047
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
26048
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
25992
26049
|
},
|
|
25993
26050
|
ok: { type: "boolean" }
|
|
25994
26051
|
},
|
|
@@ -26007,7 +26064,8 @@ var openapi_default = {
|
|
|
26007
26064
|
tags: [],
|
|
26008
26065
|
"x-fern-ignore": true,
|
|
26009
26066
|
"x-response-key": "bridge_client_session",
|
|
26010
|
-
"x-title": "Get a Bridge Client Session"
|
|
26067
|
+
"x-title": "Get a Bridge Client Session",
|
|
26068
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26011
26069
|
},
|
|
26012
26070
|
post: {
|
|
26013
26071
|
description: "Returns the bridge client session associated with the session token used.",
|
|
@@ -26056,7 +26114,8 @@ var openapi_default = {
|
|
|
26056
26114
|
"bridge_client_machine_identifier_key"
|
|
26057
26115
|
],
|
|
26058
26116
|
type: "object",
|
|
26059
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
26117
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
26118
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26060
26119
|
},
|
|
26061
26120
|
ok: { type: "boolean" }
|
|
26062
26121
|
},
|
|
@@ -26082,7 +26141,8 @@ var openapi_default = {
|
|
|
26082
26141
|
"x-fern-sdk-method-name": "get",
|
|
26083
26142
|
"x-fern-sdk-return-value": "bridge_client_session",
|
|
26084
26143
|
"x-response-key": "bridge_client_session",
|
|
26085
|
-
"x-title": "Get a Bridge Client Session"
|
|
26144
|
+
"x-title": "Get a Bridge Client Session",
|
|
26145
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26086
26146
|
}
|
|
26087
26147
|
},
|
|
26088
26148
|
"/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code": {
|
|
@@ -26133,7 +26193,8 @@ var openapi_default = {
|
|
|
26133
26193
|
"bridge_client_machine_identifier_key"
|
|
26134
26194
|
],
|
|
26135
26195
|
type: "object",
|
|
26136
|
-
"x-route-path": "/seam/bridge/v1/bridge_client_sessions"
|
|
26196
|
+
"x-route-path": "/seam/bridge/v1/bridge_client_sessions",
|
|
26197
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26137
26198
|
},
|
|
26138
26199
|
ok: { type: "boolean" }
|
|
26139
26200
|
},
|
|
@@ -26159,7 +26220,8 @@ var openapi_default = {
|
|
|
26159
26220
|
"x-fern-sdk-method-name": "regenerate_pairing_code",
|
|
26160
26221
|
"x-fern-sdk-return-value": "bridge_client_session",
|
|
26161
26222
|
"x-response-key": "bridge_client_session",
|
|
26162
|
-
"x-title": "Regenerate a Bridge Client Session Pairing Code"
|
|
26223
|
+
"x-title": "Regenerate a Bridge Client Session Pairing Code",
|
|
26224
|
+
"x-undocumented": "Seam Bridge Client only."
|
|
26163
26225
|
}
|
|
26164
26226
|
},
|
|
26165
26227
|
"/thermostats/activate_climate_preset": {
|