@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 +49 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +72 -0
- package/lib/seam/connect/openapi.d.ts +60 -0
- package/lib/seam/connect/openapi.js +49 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/openapi.ts +49 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
|
@@ -30663,6 +30663,18 @@ export interface Routes {
|
|
|
30663
30663
|
};
|
|
30664
30664
|
};
|
|
30665
30665
|
};
|
|
30666
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
30667
|
+
route: '/seam/bridge/v1/bridge_client_sessions/report_status';
|
|
30668
|
+
method: 'POST';
|
|
30669
|
+
queryParams: {};
|
|
30670
|
+
jsonBody: {
|
|
30671
|
+
is_tailscale_connected: boolean | null;
|
|
30672
|
+
tailscale_ip_v4: string | null;
|
|
30673
|
+
};
|
|
30674
|
+
commonParams: {};
|
|
30675
|
+
formData: {};
|
|
30676
|
+
jsonResponse: {};
|
|
30677
|
+
};
|
|
30666
30678
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
30667
30679
|
route: '/seam/bridge/v1/bridge_connected_systems/list';
|
|
30668
30680
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.381.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"zod": "^3.24.0"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@seamapi/blueprint": "^0.
|
|
95
|
+
"@seamapi/blueprint": "^0.39.0",
|
|
96
96
|
"@types/node": "^20.8.10",
|
|
97
97
|
"concurrently": "^8.2.0",
|
|
98
98
|
"del-cli": "^5.0.0",
|
|
@@ -27813,6 +27813,55 @@ export default {
|
|
|
27813
27813
|
'x-undocumented': 'Seam Bridge Client only.',
|
|
27814
27814
|
},
|
|
27815
27815
|
},
|
|
27816
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
27817
|
+
post: {
|
|
27818
|
+
description: "Report a Seam Bridge Bridge client's status.",
|
|
27819
|
+
operationId: 'seamBridgeV1BridgeClientSessionsReportStatusPost',
|
|
27820
|
+
requestBody: {
|
|
27821
|
+
content: {
|
|
27822
|
+
'application/json': {
|
|
27823
|
+
schema: {
|
|
27824
|
+
properties: {
|
|
27825
|
+
is_tailscale_connected: { nullable: true, type: 'boolean' },
|
|
27826
|
+
tailscale_ip_v4: { nullable: true, type: 'string' },
|
|
27827
|
+
},
|
|
27828
|
+
required: ['is_tailscale_connected', 'tailscale_ip_v4'],
|
|
27829
|
+
type: 'object',
|
|
27830
|
+
},
|
|
27831
|
+
},
|
|
27832
|
+
},
|
|
27833
|
+
},
|
|
27834
|
+
responses: {
|
|
27835
|
+
200: {
|
|
27836
|
+
content: {
|
|
27837
|
+
'application/json': {
|
|
27838
|
+
schema: {
|
|
27839
|
+
properties: { ok: { type: 'boolean' } },
|
|
27840
|
+
required: ['ok'],
|
|
27841
|
+
type: 'object',
|
|
27842
|
+
},
|
|
27843
|
+
},
|
|
27844
|
+
},
|
|
27845
|
+
description: 'OK',
|
|
27846
|
+
},
|
|
27847
|
+
400: { description: 'Bad Request' },
|
|
27848
|
+
401: { description: 'Unauthorized' },
|
|
27849
|
+
},
|
|
27850
|
+
security: [{ bridge_client_session: [] }],
|
|
27851
|
+
summary: '/seam/bridge/v1/bridge_client_sessions/report_status',
|
|
27852
|
+
tags: [],
|
|
27853
|
+
'x-fern-sdk-group-name': [
|
|
27854
|
+
'seam',
|
|
27855
|
+
'bridge',
|
|
27856
|
+
'v1',
|
|
27857
|
+
'bridge_client_sessions',
|
|
27858
|
+
],
|
|
27859
|
+
'x-fern-sdk-method-name': 'report_status',
|
|
27860
|
+
'x-response-key': null,
|
|
27861
|
+
'x-title': "Report a Bridge Client's Status",
|
|
27862
|
+
'x-undocumented': 'Seam Bridge Client only.',
|
|
27863
|
+
},
|
|
27864
|
+
},
|
|
27816
27865
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
27817
27866
|
get: {
|
|
27818
27867
|
description:
|
|
@@ -37051,6 +37051,18 @@ export interface Routes {
|
|
|
37051
37051
|
}
|
|
37052
37052
|
}
|
|
37053
37053
|
}
|
|
37054
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
37055
|
+
route: '/seam/bridge/v1/bridge_client_sessions/report_status'
|
|
37056
|
+
method: 'POST'
|
|
37057
|
+
queryParams: {}
|
|
37058
|
+
jsonBody: {
|
|
37059
|
+
is_tailscale_connected: boolean | null
|
|
37060
|
+
tailscale_ip_v4: string | null
|
|
37061
|
+
}
|
|
37062
|
+
commonParams: {}
|
|
37063
|
+
formData: {}
|
|
37064
|
+
jsonResponse: {}
|
|
37065
|
+
}
|
|
37054
37066
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
37055
37067
|
route: '/seam/bridge/v1/bridge_connected_systems/list'
|
|
37056
37068
|
method: 'GET' | 'POST'
|