@seamapi/types 1.366.0 → 1.367.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 +338 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +417 -0
- package/lib/seam/connect/models/bridges/bridge_client_session.d.ts +235 -0
- package/lib/seam/connect/models/bridges/bridge_client_session.js +47 -0
- package/lib/seam/connect/models/bridges/bridge_client_session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +284 -0
- package/lib/seam/connect/openapi.js +308 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +63 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/bridges/bridge_client_session.ts +62 -0
- package/src/lib/seam/connect/openapi.ts +348 -0
- package/src/lib/seam/connect/route-types.ts +72 -0
|
@@ -23790,6 +23790,82 @@ export default {
|
|
|
23790
23790
|
bridge_client_session_token: { type: 'string' },
|
|
23791
23791
|
bridge_client_time_zone: { type: 'string' },
|
|
23792
23792
|
created_at: { format: 'date-time', type: 'string' },
|
|
23793
|
+
errors: {
|
|
23794
|
+
items: {
|
|
23795
|
+
description: 'Error associated with the `bridge_client_session`.',
|
|
23796
|
+
discriminator: { propertyName: 'error_code' },
|
|
23797
|
+
oneOf: [
|
|
23798
|
+
{
|
|
23799
|
+
description: "Seam cannot reach the bridge's LAN",
|
|
23800
|
+
properties: {
|
|
23801
|
+
can_tailscale_proxy_reach_bridge: {
|
|
23802
|
+
description: 'Tailscale proxy cannot reach the bridge',
|
|
23803
|
+
type: 'boolean',
|
|
23804
|
+
},
|
|
23805
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
23806
|
+
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
23807
|
+
type: 'boolean',
|
|
23808
|
+
},
|
|
23809
|
+
created_at: {
|
|
23810
|
+
format: 'date-time',
|
|
23811
|
+
type: 'string',
|
|
23812
|
+
},
|
|
23813
|
+
error_code: {
|
|
23814
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
23815
|
+
enum: ['bridge_lan_unreachable'],
|
|
23816
|
+
type: 'string',
|
|
23817
|
+
},
|
|
23818
|
+
is_bridge_socks_server_healthy: {
|
|
23819
|
+
description: "Bridge's SOCKS server is unhealthy",
|
|
23820
|
+
type: 'boolean',
|
|
23821
|
+
},
|
|
23822
|
+
is_tailscale_proxy_reachable: {
|
|
23823
|
+
description: 'Seam cannot reach the tailscale proxy',
|
|
23824
|
+
type: 'boolean',
|
|
23825
|
+
},
|
|
23826
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
23827
|
+
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
23828
|
+
type: 'boolean',
|
|
23829
|
+
},
|
|
23830
|
+
message: { type: 'string' },
|
|
23831
|
+
},
|
|
23832
|
+
required: [
|
|
23833
|
+
'message',
|
|
23834
|
+
'created_at',
|
|
23835
|
+
'error_code',
|
|
23836
|
+
'is_tailscale_proxy_reachable',
|
|
23837
|
+
'is_tailscale_proxy_socks_server_healthy',
|
|
23838
|
+
'can_tailscale_proxy_reach_tailscale_network',
|
|
23839
|
+
'can_tailscale_proxy_reach_bridge',
|
|
23840
|
+
'is_bridge_socks_server_healthy',
|
|
23841
|
+
],
|
|
23842
|
+
type: 'object',
|
|
23843
|
+
},
|
|
23844
|
+
{
|
|
23845
|
+
description: 'Bridge has stopped communicating with Seam',
|
|
23846
|
+
properties: {
|
|
23847
|
+
created_at: {
|
|
23848
|
+
format: 'date-time',
|
|
23849
|
+
type: 'string',
|
|
23850
|
+
},
|
|
23851
|
+
error_code: {
|
|
23852
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
23853
|
+
enum: ['no_communication_from_bridge'],
|
|
23854
|
+
type: 'string',
|
|
23855
|
+
},
|
|
23856
|
+
message: { type: 'string' },
|
|
23857
|
+
},
|
|
23858
|
+
required: [
|
|
23859
|
+
'message',
|
|
23860
|
+
'created_at',
|
|
23861
|
+
'error_code',
|
|
23862
|
+
],
|
|
23863
|
+
type: 'object',
|
|
23864
|
+
},
|
|
23865
|
+
],
|
|
23866
|
+
},
|
|
23867
|
+
type: 'array',
|
|
23868
|
+
},
|
|
23793
23869
|
pairing_code: {
|
|
23794
23870
|
maxLength: 6,
|
|
23795
23871
|
minLength: 6,
|
|
@@ -23813,6 +23889,7 @@ export default {
|
|
|
23813
23889
|
'bridge_client_name',
|
|
23814
23890
|
'bridge_client_time_zone',
|
|
23815
23891
|
'bridge_client_machine_identifier_key',
|
|
23892
|
+
'errors',
|
|
23816
23893
|
],
|
|
23817
23894
|
type: 'object',
|
|
23818
23895
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|
|
@@ -23869,6 +23946,82 @@ export default {
|
|
|
23869
23946
|
bridge_client_session_token: { type: 'string' },
|
|
23870
23947
|
bridge_client_time_zone: { type: 'string' },
|
|
23871
23948
|
created_at: { format: 'date-time', type: 'string' },
|
|
23949
|
+
errors: {
|
|
23950
|
+
items: {
|
|
23951
|
+
description: 'Error associated with the `bridge_client_session`.',
|
|
23952
|
+
discriminator: { propertyName: 'error_code' },
|
|
23953
|
+
oneOf: [
|
|
23954
|
+
{
|
|
23955
|
+
description: "Seam cannot reach the bridge's LAN",
|
|
23956
|
+
properties: {
|
|
23957
|
+
can_tailscale_proxy_reach_bridge: {
|
|
23958
|
+
description: 'Tailscale proxy cannot reach the bridge',
|
|
23959
|
+
type: 'boolean',
|
|
23960
|
+
},
|
|
23961
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
23962
|
+
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
23963
|
+
type: 'boolean',
|
|
23964
|
+
},
|
|
23965
|
+
created_at: {
|
|
23966
|
+
format: 'date-time',
|
|
23967
|
+
type: 'string',
|
|
23968
|
+
},
|
|
23969
|
+
error_code: {
|
|
23970
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
23971
|
+
enum: ['bridge_lan_unreachable'],
|
|
23972
|
+
type: 'string',
|
|
23973
|
+
},
|
|
23974
|
+
is_bridge_socks_server_healthy: {
|
|
23975
|
+
description: "Bridge's SOCKS server is unhealthy",
|
|
23976
|
+
type: 'boolean',
|
|
23977
|
+
},
|
|
23978
|
+
is_tailscale_proxy_reachable: {
|
|
23979
|
+
description: 'Seam cannot reach the tailscale proxy',
|
|
23980
|
+
type: 'boolean',
|
|
23981
|
+
},
|
|
23982
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
23983
|
+
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
23984
|
+
type: 'boolean',
|
|
23985
|
+
},
|
|
23986
|
+
message: { type: 'string' },
|
|
23987
|
+
},
|
|
23988
|
+
required: [
|
|
23989
|
+
'message',
|
|
23990
|
+
'created_at',
|
|
23991
|
+
'error_code',
|
|
23992
|
+
'is_tailscale_proxy_reachable',
|
|
23993
|
+
'is_tailscale_proxy_socks_server_healthy',
|
|
23994
|
+
'can_tailscale_proxy_reach_tailscale_network',
|
|
23995
|
+
'can_tailscale_proxy_reach_bridge',
|
|
23996
|
+
'is_bridge_socks_server_healthy',
|
|
23997
|
+
],
|
|
23998
|
+
type: 'object',
|
|
23999
|
+
},
|
|
24000
|
+
{
|
|
24001
|
+
description: 'Bridge has stopped communicating with Seam',
|
|
24002
|
+
properties: {
|
|
24003
|
+
created_at: {
|
|
24004
|
+
format: 'date-time',
|
|
24005
|
+
type: 'string',
|
|
24006
|
+
},
|
|
24007
|
+
error_code: {
|
|
24008
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
24009
|
+
enum: ['no_communication_from_bridge'],
|
|
24010
|
+
type: 'string',
|
|
24011
|
+
},
|
|
24012
|
+
message: { type: 'string' },
|
|
24013
|
+
},
|
|
24014
|
+
required: [
|
|
24015
|
+
'message',
|
|
24016
|
+
'created_at',
|
|
24017
|
+
'error_code',
|
|
24018
|
+
],
|
|
24019
|
+
type: 'object',
|
|
24020
|
+
},
|
|
24021
|
+
],
|
|
24022
|
+
},
|
|
24023
|
+
type: 'array',
|
|
24024
|
+
},
|
|
23872
24025
|
pairing_code: {
|
|
23873
24026
|
maxLength: 6,
|
|
23874
24027
|
minLength: 6,
|
|
@@ -23892,6 +24045,7 @@ export default {
|
|
|
23892
24045
|
'bridge_client_name',
|
|
23893
24046
|
'bridge_client_time_zone',
|
|
23894
24047
|
'bridge_client_machine_identifier_key',
|
|
24048
|
+
'errors',
|
|
23895
24049
|
],
|
|
23896
24050
|
type: 'object',
|
|
23897
24051
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|
|
@@ -23939,6 +24093,82 @@ export default {
|
|
|
23939
24093
|
bridge_client_session_token: { type: 'string' },
|
|
23940
24094
|
bridge_client_time_zone: { type: 'string' },
|
|
23941
24095
|
created_at: { format: 'date-time', type: 'string' },
|
|
24096
|
+
errors: {
|
|
24097
|
+
items: {
|
|
24098
|
+
description: 'Error associated with the `bridge_client_session`.',
|
|
24099
|
+
discriminator: { propertyName: 'error_code' },
|
|
24100
|
+
oneOf: [
|
|
24101
|
+
{
|
|
24102
|
+
description: "Seam cannot reach the bridge's LAN",
|
|
24103
|
+
properties: {
|
|
24104
|
+
can_tailscale_proxy_reach_bridge: {
|
|
24105
|
+
description: 'Tailscale proxy cannot reach the bridge',
|
|
24106
|
+
type: 'boolean',
|
|
24107
|
+
},
|
|
24108
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
24109
|
+
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
24110
|
+
type: 'boolean',
|
|
24111
|
+
},
|
|
24112
|
+
created_at: {
|
|
24113
|
+
format: 'date-time',
|
|
24114
|
+
type: 'string',
|
|
24115
|
+
},
|
|
24116
|
+
error_code: {
|
|
24117
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
24118
|
+
enum: ['bridge_lan_unreachable'],
|
|
24119
|
+
type: 'string',
|
|
24120
|
+
},
|
|
24121
|
+
is_bridge_socks_server_healthy: {
|
|
24122
|
+
description: "Bridge's SOCKS server is unhealthy",
|
|
24123
|
+
type: 'boolean',
|
|
24124
|
+
},
|
|
24125
|
+
is_tailscale_proxy_reachable: {
|
|
24126
|
+
description: 'Seam cannot reach the tailscale proxy',
|
|
24127
|
+
type: 'boolean',
|
|
24128
|
+
},
|
|
24129
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
24130
|
+
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
24131
|
+
type: 'boolean',
|
|
24132
|
+
},
|
|
24133
|
+
message: { type: 'string' },
|
|
24134
|
+
},
|
|
24135
|
+
required: [
|
|
24136
|
+
'message',
|
|
24137
|
+
'created_at',
|
|
24138
|
+
'error_code',
|
|
24139
|
+
'is_tailscale_proxy_reachable',
|
|
24140
|
+
'is_tailscale_proxy_socks_server_healthy',
|
|
24141
|
+
'can_tailscale_proxy_reach_tailscale_network',
|
|
24142
|
+
'can_tailscale_proxy_reach_bridge',
|
|
24143
|
+
'is_bridge_socks_server_healthy',
|
|
24144
|
+
],
|
|
24145
|
+
type: 'object',
|
|
24146
|
+
},
|
|
24147
|
+
{
|
|
24148
|
+
description: 'Bridge has stopped communicating with Seam',
|
|
24149
|
+
properties: {
|
|
24150
|
+
created_at: {
|
|
24151
|
+
format: 'date-time',
|
|
24152
|
+
type: 'string',
|
|
24153
|
+
},
|
|
24154
|
+
error_code: {
|
|
24155
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
24156
|
+
enum: ['no_communication_from_bridge'],
|
|
24157
|
+
type: 'string',
|
|
24158
|
+
},
|
|
24159
|
+
message: { type: 'string' },
|
|
24160
|
+
},
|
|
24161
|
+
required: [
|
|
24162
|
+
'message',
|
|
24163
|
+
'created_at',
|
|
24164
|
+
'error_code',
|
|
24165
|
+
],
|
|
24166
|
+
type: 'object',
|
|
24167
|
+
},
|
|
24168
|
+
],
|
|
24169
|
+
},
|
|
24170
|
+
type: 'array',
|
|
24171
|
+
},
|
|
23942
24172
|
pairing_code: {
|
|
23943
24173
|
maxLength: 6,
|
|
23944
24174
|
minLength: 6,
|
|
@@ -23962,6 +24192,7 @@ export default {
|
|
|
23962
24192
|
'bridge_client_name',
|
|
23963
24193
|
'bridge_client_time_zone',
|
|
23964
24194
|
'bridge_client_machine_identifier_key',
|
|
24195
|
+
'errors',
|
|
23965
24196
|
],
|
|
23966
24197
|
type: 'object',
|
|
23967
24198
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|
|
@@ -24018,6 +24249,82 @@ export default {
|
|
|
24018
24249
|
bridge_client_session_token: { type: 'string' },
|
|
24019
24250
|
bridge_client_time_zone: { type: 'string' },
|
|
24020
24251
|
created_at: { format: 'date-time', type: 'string' },
|
|
24252
|
+
errors: {
|
|
24253
|
+
items: {
|
|
24254
|
+
description: 'Error associated with the `bridge_client_session`.',
|
|
24255
|
+
discriminator: { propertyName: 'error_code' },
|
|
24256
|
+
oneOf: [
|
|
24257
|
+
{
|
|
24258
|
+
description: "Seam cannot reach the bridge's LAN",
|
|
24259
|
+
properties: {
|
|
24260
|
+
can_tailscale_proxy_reach_bridge: {
|
|
24261
|
+
description: 'Tailscale proxy cannot reach the bridge',
|
|
24262
|
+
type: 'boolean',
|
|
24263
|
+
},
|
|
24264
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
24265
|
+
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
24266
|
+
type: 'boolean',
|
|
24267
|
+
},
|
|
24268
|
+
created_at: {
|
|
24269
|
+
format: 'date-time',
|
|
24270
|
+
type: 'string',
|
|
24271
|
+
},
|
|
24272
|
+
error_code: {
|
|
24273
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
24274
|
+
enum: ['bridge_lan_unreachable'],
|
|
24275
|
+
type: 'string',
|
|
24276
|
+
},
|
|
24277
|
+
is_bridge_socks_server_healthy: {
|
|
24278
|
+
description: "Bridge's SOCKS server is unhealthy",
|
|
24279
|
+
type: 'boolean',
|
|
24280
|
+
},
|
|
24281
|
+
is_tailscale_proxy_reachable: {
|
|
24282
|
+
description: 'Seam cannot reach the tailscale proxy',
|
|
24283
|
+
type: 'boolean',
|
|
24284
|
+
},
|
|
24285
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
24286
|
+
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
24287
|
+
type: 'boolean',
|
|
24288
|
+
},
|
|
24289
|
+
message: { type: 'string' },
|
|
24290
|
+
},
|
|
24291
|
+
required: [
|
|
24292
|
+
'message',
|
|
24293
|
+
'created_at',
|
|
24294
|
+
'error_code',
|
|
24295
|
+
'is_tailscale_proxy_reachable',
|
|
24296
|
+
'is_tailscale_proxy_socks_server_healthy',
|
|
24297
|
+
'can_tailscale_proxy_reach_tailscale_network',
|
|
24298
|
+
'can_tailscale_proxy_reach_bridge',
|
|
24299
|
+
'is_bridge_socks_server_healthy',
|
|
24300
|
+
],
|
|
24301
|
+
type: 'object',
|
|
24302
|
+
},
|
|
24303
|
+
{
|
|
24304
|
+
description: 'Bridge has stopped communicating with Seam',
|
|
24305
|
+
properties: {
|
|
24306
|
+
created_at: {
|
|
24307
|
+
format: 'date-time',
|
|
24308
|
+
type: 'string',
|
|
24309
|
+
},
|
|
24310
|
+
error_code: {
|
|
24311
|
+
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
24312
|
+
enum: ['no_communication_from_bridge'],
|
|
24313
|
+
type: 'string',
|
|
24314
|
+
},
|
|
24315
|
+
message: { type: 'string' },
|
|
24316
|
+
},
|
|
24317
|
+
required: [
|
|
24318
|
+
'message',
|
|
24319
|
+
'created_at',
|
|
24320
|
+
'error_code',
|
|
24321
|
+
],
|
|
24322
|
+
type: 'object',
|
|
24323
|
+
},
|
|
24324
|
+
],
|
|
24325
|
+
},
|
|
24326
|
+
type: 'array',
|
|
24327
|
+
},
|
|
24021
24328
|
pairing_code: {
|
|
24022
24329
|
maxLength: 6,
|
|
24023
24330
|
minLength: 6,
|
|
@@ -24041,6 +24348,7 @@ export default {
|
|
|
24041
24348
|
'bridge_client_name',
|
|
24042
24349
|
'bridge_client_time_zone',
|
|
24043
24350
|
'bridge_client_machine_identifier_key',
|
|
24351
|
+
'errors',
|
|
24044
24352
|
],
|
|
24045
24353
|
type: 'object',
|
|
24046
24354
|
'x-route-path': '/seam/bridge/v1/bridge_client_sessions',
|