@seamapi/types 1.380.1 → 1.381.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 CHANGED
@@ -30148,6 +30148,55 @@ var openapi_default = {
30148
30148
  "x-undocumented": "Seam Bridge Client only."
30149
30149
  }
30150
30150
  },
30151
+ "/seam/bridge/v1/bridge_client_sessions/report_status": {
30152
+ post: {
30153
+ description: "Report a Seam Bridge Bridge client's status.",
30154
+ operationId: "seamBridgeV1BridgeClientSessionsReportStatusPost",
30155
+ requestBody: {
30156
+ content: {
30157
+ "application/json": {
30158
+ schema: {
30159
+ properties: {
30160
+ is_tailscale_connected: { nullable: true, type: "boolean" },
30161
+ tailscale_ip_v4: { nullable: true, type: "string" }
30162
+ },
30163
+ required: ["is_tailscale_connected", "tailscale_ip_v4"],
30164
+ type: "object"
30165
+ }
30166
+ }
30167
+ }
30168
+ },
30169
+ responses: {
30170
+ 200: {
30171
+ content: {
30172
+ "application/json": {
30173
+ schema: {
30174
+ properties: { ok: { type: "boolean" } },
30175
+ required: ["ok"],
30176
+ type: "object"
30177
+ }
30178
+ }
30179
+ },
30180
+ description: "OK"
30181
+ },
30182
+ 400: { description: "Bad Request" },
30183
+ 401: { description: "Unauthorized" }
30184
+ },
30185
+ security: [{ bridge_client_session: [] }],
30186
+ summary: "/seam/bridge/v1/bridge_client_sessions/report_status",
30187
+ tags: [],
30188
+ "x-fern-sdk-group-name": [
30189
+ "seam",
30190
+ "bridge",
30191
+ "v1",
30192
+ "bridge_client_sessions"
30193
+ ],
30194
+ "x-fern-sdk-method-name": "report_status",
30195
+ "x-response-key": null,
30196
+ "x-title": "Report a Bridge Client's Status",
30197
+ "x-undocumented": "Seam Bridge Client only."
30198
+ }
30199
+ },
30151
30200
  "/seam/bridge/v1/bridge_connected_systems/list": {
30152
30201
  get: {
30153
30202
  description: "Returns the bridge connected systems associated with the session token used.",