@seamapi/types 1.366.0 → 1.367.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 +517 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +653 -5
- 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/models/locations/location.d.ts +3 -0
- package/lib/seam/connect/models/locations/location.js +1 -0
- package/lib/seam/connect/models/locations/location.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +507 -0
- package/lib/seam/connect/openapi.js +487 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +76 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/bridges/bridge_client_session.ts +62 -0
- package/src/lib/seam/connect/models/locations/location.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +530 -0
- package/src/lib/seam/connect/route-types.ts +85 -5
package/dist/connect.d.cts
CHANGED
|
@@ -9256,8 +9256,64 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9256
9256
|
bridge_client_name: z.ZodString;
|
|
9257
9257
|
bridge_client_time_zone: z.ZodString;
|
|
9258
9258
|
bridge_client_machine_identifier_key: z.ZodString;
|
|
9259
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
9260
|
+
message: z.ZodString;
|
|
9261
|
+
created_at: z.ZodString;
|
|
9262
|
+
}, {
|
|
9263
|
+
error_code: z.ZodLiteral<"bridge_lan_unreachable">;
|
|
9264
|
+
is_tailscale_proxy_reachable: z.ZodBoolean;
|
|
9265
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodBoolean;
|
|
9266
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean;
|
|
9267
|
+
can_tailscale_proxy_reach_bridge: z.ZodBoolean;
|
|
9268
|
+
is_bridge_socks_server_healthy: z.ZodBoolean;
|
|
9269
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9270
|
+
message: string;
|
|
9271
|
+
created_at: string;
|
|
9272
|
+
error_code: "bridge_lan_unreachable";
|
|
9273
|
+
is_tailscale_proxy_reachable: boolean;
|
|
9274
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9275
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9276
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
9277
|
+
is_bridge_socks_server_healthy: boolean;
|
|
9278
|
+
}, {
|
|
9279
|
+
message: string;
|
|
9280
|
+
created_at: string;
|
|
9281
|
+
error_code: "bridge_lan_unreachable";
|
|
9282
|
+
is_tailscale_proxy_reachable: boolean;
|
|
9283
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9284
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9285
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
9286
|
+
is_bridge_socks_server_healthy: boolean;
|
|
9287
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9288
|
+
message: z.ZodString;
|
|
9289
|
+
created_at: z.ZodString;
|
|
9290
|
+
}, {
|
|
9291
|
+
error_code: z.ZodLiteral<"no_communication_from_bridge">;
|
|
9292
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9293
|
+
message: string;
|
|
9294
|
+
created_at: string;
|
|
9295
|
+
error_code: "no_communication_from_bridge";
|
|
9296
|
+
}, {
|
|
9297
|
+
message: string;
|
|
9298
|
+
created_at: string;
|
|
9299
|
+
error_code: "no_communication_from_bridge";
|
|
9300
|
+
}>]>, "many">;
|
|
9259
9301
|
}, "strip", z.ZodTypeAny, {
|
|
9260
9302
|
created_at: string;
|
|
9303
|
+
errors: ({
|
|
9304
|
+
message: string;
|
|
9305
|
+
created_at: string;
|
|
9306
|
+
error_code: "bridge_lan_unreachable";
|
|
9307
|
+
is_tailscale_proxy_reachable: boolean;
|
|
9308
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9309
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9310
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
9311
|
+
is_bridge_socks_server_healthy: boolean;
|
|
9312
|
+
} | {
|
|
9313
|
+
message: string;
|
|
9314
|
+
created_at: string;
|
|
9315
|
+
error_code: "no_communication_from_bridge";
|
|
9316
|
+
})[];
|
|
9261
9317
|
bridge_client_session_id: string;
|
|
9262
9318
|
bridge_client_session_token: string;
|
|
9263
9319
|
pairing_code: string;
|
|
@@ -9269,6 +9325,20 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9269
9325
|
bridge_client_machine_identifier_key: string;
|
|
9270
9326
|
}, {
|
|
9271
9327
|
created_at: string;
|
|
9328
|
+
errors: ({
|
|
9329
|
+
message: string;
|
|
9330
|
+
created_at: string;
|
|
9331
|
+
error_code: "bridge_lan_unreachable";
|
|
9332
|
+
is_tailscale_proxy_reachable: boolean;
|
|
9333
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9334
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9335
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
9336
|
+
is_bridge_socks_server_healthy: boolean;
|
|
9337
|
+
} | {
|
|
9338
|
+
message: string;
|
|
9339
|
+
created_at: string;
|
|
9340
|
+
error_code: "no_communication_from_bridge";
|
|
9341
|
+
})[];
|
|
9272
9342
|
bridge_client_session_id: string;
|
|
9273
9343
|
bridge_client_session_token: string;
|
|
9274
9344
|
pairing_code: string;
|
|
@@ -39671,6 +39741,77 @@ declare const _default: {
|
|
|
39671
39741
|
format: string;
|
|
39672
39742
|
type: string;
|
|
39673
39743
|
};
|
|
39744
|
+
errors: {
|
|
39745
|
+
items: {
|
|
39746
|
+
description: string;
|
|
39747
|
+
discriminator: {
|
|
39748
|
+
propertyName: string;
|
|
39749
|
+
};
|
|
39750
|
+
oneOf: ({
|
|
39751
|
+
description: string;
|
|
39752
|
+
properties: {
|
|
39753
|
+
can_tailscale_proxy_reach_bridge: {
|
|
39754
|
+
description: string;
|
|
39755
|
+
type: string;
|
|
39756
|
+
};
|
|
39757
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
39758
|
+
description: string;
|
|
39759
|
+
type: string;
|
|
39760
|
+
};
|
|
39761
|
+
created_at: {
|
|
39762
|
+
format: string;
|
|
39763
|
+
type: string;
|
|
39764
|
+
};
|
|
39765
|
+
error_code: {
|
|
39766
|
+
description: string;
|
|
39767
|
+
enum: string[];
|
|
39768
|
+
type: string;
|
|
39769
|
+
};
|
|
39770
|
+
is_bridge_socks_server_healthy: {
|
|
39771
|
+
description: string;
|
|
39772
|
+
type: string;
|
|
39773
|
+
};
|
|
39774
|
+
is_tailscale_proxy_reachable: {
|
|
39775
|
+
description: string;
|
|
39776
|
+
type: string;
|
|
39777
|
+
};
|
|
39778
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
39779
|
+
description: string;
|
|
39780
|
+
type: string;
|
|
39781
|
+
};
|
|
39782
|
+
message: {
|
|
39783
|
+
type: string;
|
|
39784
|
+
};
|
|
39785
|
+
};
|
|
39786
|
+
required: string[];
|
|
39787
|
+
type: string;
|
|
39788
|
+
} | {
|
|
39789
|
+
description: string;
|
|
39790
|
+
properties: {
|
|
39791
|
+
created_at: {
|
|
39792
|
+
format: string;
|
|
39793
|
+
type: string;
|
|
39794
|
+
};
|
|
39795
|
+
error_code: {
|
|
39796
|
+
description: string;
|
|
39797
|
+
enum: string[];
|
|
39798
|
+
type: string;
|
|
39799
|
+
};
|
|
39800
|
+
message: {
|
|
39801
|
+
type: string;
|
|
39802
|
+
};
|
|
39803
|
+
can_tailscale_proxy_reach_bridge?: never;
|
|
39804
|
+
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
39805
|
+
is_bridge_socks_server_healthy?: never;
|
|
39806
|
+
is_tailscale_proxy_reachable?: never;
|
|
39807
|
+
is_tailscale_proxy_socks_server_healthy?: never;
|
|
39808
|
+
};
|
|
39809
|
+
required: string[];
|
|
39810
|
+
type: string;
|
|
39811
|
+
})[];
|
|
39812
|
+
};
|
|
39813
|
+
type: string;
|
|
39814
|
+
};
|
|
39674
39815
|
pairing_code: {
|
|
39675
39816
|
maxLength: number;
|
|
39676
39817
|
minLength: number;
|
|
@@ -39756,6 +39897,77 @@ declare const _default: {
|
|
|
39756
39897
|
format: string;
|
|
39757
39898
|
type: string;
|
|
39758
39899
|
};
|
|
39900
|
+
errors: {
|
|
39901
|
+
items: {
|
|
39902
|
+
description: string;
|
|
39903
|
+
discriminator: {
|
|
39904
|
+
propertyName: string;
|
|
39905
|
+
};
|
|
39906
|
+
oneOf: ({
|
|
39907
|
+
description: string;
|
|
39908
|
+
properties: {
|
|
39909
|
+
can_tailscale_proxy_reach_bridge: {
|
|
39910
|
+
description: string;
|
|
39911
|
+
type: string;
|
|
39912
|
+
};
|
|
39913
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
39914
|
+
description: string;
|
|
39915
|
+
type: string;
|
|
39916
|
+
};
|
|
39917
|
+
created_at: {
|
|
39918
|
+
format: string;
|
|
39919
|
+
type: string;
|
|
39920
|
+
};
|
|
39921
|
+
error_code: {
|
|
39922
|
+
description: string;
|
|
39923
|
+
enum: string[];
|
|
39924
|
+
type: string;
|
|
39925
|
+
};
|
|
39926
|
+
is_bridge_socks_server_healthy: {
|
|
39927
|
+
description: string;
|
|
39928
|
+
type: string;
|
|
39929
|
+
};
|
|
39930
|
+
is_tailscale_proxy_reachable: {
|
|
39931
|
+
description: string;
|
|
39932
|
+
type: string;
|
|
39933
|
+
};
|
|
39934
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
39935
|
+
description: string;
|
|
39936
|
+
type: string;
|
|
39937
|
+
};
|
|
39938
|
+
message: {
|
|
39939
|
+
type: string;
|
|
39940
|
+
};
|
|
39941
|
+
};
|
|
39942
|
+
required: string[];
|
|
39943
|
+
type: string;
|
|
39944
|
+
} | {
|
|
39945
|
+
description: string;
|
|
39946
|
+
properties: {
|
|
39947
|
+
created_at: {
|
|
39948
|
+
format: string;
|
|
39949
|
+
type: string;
|
|
39950
|
+
};
|
|
39951
|
+
error_code: {
|
|
39952
|
+
description: string;
|
|
39953
|
+
enum: string[];
|
|
39954
|
+
type: string;
|
|
39955
|
+
};
|
|
39956
|
+
message: {
|
|
39957
|
+
type: string;
|
|
39958
|
+
};
|
|
39959
|
+
can_tailscale_proxy_reach_bridge?: never;
|
|
39960
|
+
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
39961
|
+
is_bridge_socks_server_healthy?: never;
|
|
39962
|
+
is_tailscale_proxy_reachable?: never;
|
|
39963
|
+
is_tailscale_proxy_socks_server_healthy?: never;
|
|
39964
|
+
};
|
|
39965
|
+
required: string[];
|
|
39966
|
+
type: string;
|
|
39967
|
+
})[];
|
|
39968
|
+
};
|
|
39969
|
+
type: string;
|
|
39970
|
+
};
|
|
39759
39971
|
pairing_code: {
|
|
39760
39972
|
maxLength: number;
|
|
39761
39973
|
minLength: number;
|
|
@@ -39837,6 +40049,77 @@ declare const _default: {
|
|
|
39837
40049
|
format: string;
|
|
39838
40050
|
type: string;
|
|
39839
40051
|
};
|
|
40052
|
+
errors: {
|
|
40053
|
+
items: {
|
|
40054
|
+
description: string;
|
|
40055
|
+
discriminator: {
|
|
40056
|
+
propertyName: string;
|
|
40057
|
+
};
|
|
40058
|
+
oneOf: ({
|
|
40059
|
+
description: string;
|
|
40060
|
+
properties: {
|
|
40061
|
+
can_tailscale_proxy_reach_bridge: {
|
|
40062
|
+
description: string;
|
|
40063
|
+
type: string;
|
|
40064
|
+
};
|
|
40065
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
40066
|
+
description: string;
|
|
40067
|
+
type: string;
|
|
40068
|
+
};
|
|
40069
|
+
created_at: {
|
|
40070
|
+
format: string;
|
|
40071
|
+
type: string;
|
|
40072
|
+
};
|
|
40073
|
+
error_code: {
|
|
40074
|
+
description: string;
|
|
40075
|
+
enum: string[];
|
|
40076
|
+
type: string;
|
|
40077
|
+
};
|
|
40078
|
+
is_bridge_socks_server_healthy: {
|
|
40079
|
+
description: string;
|
|
40080
|
+
type: string;
|
|
40081
|
+
};
|
|
40082
|
+
is_tailscale_proxy_reachable: {
|
|
40083
|
+
description: string;
|
|
40084
|
+
type: string;
|
|
40085
|
+
};
|
|
40086
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
40087
|
+
description: string;
|
|
40088
|
+
type: string;
|
|
40089
|
+
};
|
|
40090
|
+
message: {
|
|
40091
|
+
type: string;
|
|
40092
|
+
};
|
|
40093
|
+
};
|
|
40094
|
+
required: string[];
|
|
40095
|
+
type: string;
|
|
40096
|
+
} | {
|
|
40097
|
+
description: string;
|
|
40098
|
+
properties: {
|
|
40099
|
+
created_at: {
|
|
40100
|
+
format: string;
|
|
40101
|
+
type: string;
|
|
40102
|
+
};
|
|
40103
|
+
error_code: {
|
|
40104
|
+
description: string;
|
|
40105
|
+
enum: string[];
|
|
40106
|
+
type: string;
|
|
40107
|
+
};
|
|
40108
|
+
message: {
|
|
40109
|
+
type: string;
|
|
40110
|
+
};
|
|
40111
|
+
can_tailscale_proxy_reach_bridge?: never;
|
|
40112
|
+
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
40113
|
+
is_bridge_socks_server_healthy?: never;
|
|
40114
|
+
is_tailscale_proxy_reachable?: never;
|
|
40115
|
+
is_tailscale_proxy_socks_server_healthy?: never;
|
|
40116
|
+
};
|
|
40117
|
+
required: string[];
|
|
40118
|
+
type: string;
|
|
40119
|
+
})[];
|
|
40120
|
+
};
|
|
40121
|
+
type: string;
|
|
40122
|
+
};
|
|
39840
40123
|
pairing_code: {
|
|
39841
40124
|
maxLength: number;
|
|
39842
40125
|
minLength: number;
|
|
@@ -39922,6 +40205,77 @@ declare const _default: {
|
|
|
39922
40205
|
format: string;
|
|
39923
40206
|
type: string;
|
|
39924
40207
|
};
|
|
40208
|
+
errors: {
|
|
40209
|
+
items: {
|
|
40210
|
+
description: string;
|
|
40211
|
+
discriminator: {
|
|
40212
|
+
propertyName: string;
|
|
40213
|
+
};
|
|
40214
|
+
oneOf: ({
|
|
40215
|
+
description: string;
|
|
40216
|
+
properties: {
|
|
40217
|
+
can_tailscale_proxy_reach_bridge: {
|
|
40218
|
+
description: string;
|
|
40219
|
+
type: string;
|
|
40220
|
+
};
|
|
40221
|
+
can_tailscale_proxy_reach_tailscale_network: {
|
|
40222
|
+
description: string;
|
|
40223
|
+
type: string;
|
|
40224
|
+
};
|
|
40225
|
+
created_at: {
|
|
40226
|
+
format: string;
|
|
40227
|
+
type: string;
|
|
40228
|
+
};
|
|
40229
|
+
error_code: {
|
|
40230
|
+
description: string;
|
|
40231
|
+
enum: string[];
|
|
40232
|
+
type: string;
|
|
40233
|
+
};
|
|
40234
|
+
is_bridge_socks_server_healthy: {
|
|
40235
|
+
description: string;
|
|
40236
|
+
type: string;
|
|
40237
|
+
};
|
|
40238
|
+
is_tailscale_proxy_reachable: {
|
|
40239
|
+
description: string;
|
|
40240
|
+
type: string;
|
|
40241
|
+
};
|
|
40242
|
+
is_tailscale_proxy_socks_server_healthy: {
|
|
40243
|
+
description: string;
|
|
40244
|
+
type: string;
|
|
40245
|
+
};
|
|
40246
|
+
message: {
|
|
40247
|
+
type: string;
|
|
40248
|
+
};
|
|
40249
|
+
};
|
|
40250
|
+
required: string[];
|
|
40251
|
+
type: string;
|
|
40252
|
+
} | {
|
|
40253
|
+
description: string;
|
|
40254
|
+
properties: {
|
|
40255
|
+
created_at: {
|
|
40256
|
+
format: string;
|
|
40257
|
+
type: string;
|
|
40258
|
+
};
|
|
40259
|
+
error_code: {
|
|
40260
|
+
description: string;
|
|
40261
|
+
enum: string[];
|
|
40262
|
+
type: string;
|
|
40263
|
+
};
|
|
40264
|
+
message: {
|
|
40265
|
+
type: string;
|
|
40266
|
+
};
|
|
40267
|
+
can_tailscale_proxy_reach_bridge?: never;
|
|
40268
|
+
can_tailscale_proxy_reach_tailscale_network?: never;
|
|
40269
|
+
is_bridge_socks_server_healthy?: never;
|
|
40270
|
+
is_tailscale_proxy_reachable?: never;
|
|
40271
|
+
is_tailscale_proxy_socks_server_healthy?: never;
|
|
40272
|
+
};
|
|
40273
|
+
required: string[];
|
|
40274
|
+
type: string;
|
|
40275
|
+
})[];
|
|
40276
|
+
};
|
|
40277
|
+
type: string;
|
|
40278
|
+
};
|
|
39925
40279
|
pairing_code: {
|
|
39926
40280
|
maxLength: number;
|
|
39927
40281
|
minLength: number;
|
|
@@ -42420,6 +42774,7 @@ declare const _default: {
|
|
|
42420
42774
|
format: string;
|
|
42421
42775
|
type: string;
|
|
42422
42776
|
};
|
|
42777
|
+
minItems: number;
|
|
42423
42778
|
type: string;
|
|
42424
42779
|
};
|
|
42425
42780
|
location_id: {
|
|
@@ -42478,6 +42833,77 @@ declare const _default: {
|
|
|
42478
42833
|
'x-title': string;
|
|
42479
42834
|
'x-undocumented': string;
|
|
42480
42835
|
};
|
|
42836
|
+
put: {
|
|
42837
|
+
description: string;
|
|
42838
|
+
operationId: string;
|
|
42839
|
+
requestBody: {
|
|
42840
|
+
content: {
|
|
42841
|
+
'application/json': {
|
|
42842
|
+
schema: {
|
|
42843
|
+
properties: {
|
|
42844
|
+
device_ids: {
|
|
42845
|
+
items: {
|
|
42846
|
+
format: string;
|
|
42847
|
+
type: string;
|
|
42848
|
+
};
|
|
42849
|
+
minItems: number;
|
|
42850
|
+
type: string;
|
|
42851
|
+
};
|
|
42852
|
+
location_id: {
|
|
42853
|
+
format: string;
|
|
42854
|
+
type: string;
|
|
42855
|
+
};
|
|
42856
|
+
};
|
|
42857
|
+
required: string[];
|
|
42858
|
+
type: string;
|
|
42859
|
+
};
|
|
42860
|
+
};
|
|
42861
|
+
};
|
|
42862
|
+
};
|
|
42863
|
+
responses: {
|
|
42864
|
+
200: {
|
|
42865
|
+
content: {
|
|
42866
|
+
'application/json': {
|
|
42867
|
+
schema: {
|
|
42868
|
+
properties: {
|
|
42869
|
+
ok: {
|
|
42870
|
+
type: string;
|
|
42871
|
+
};
|
|
42872
|
+
};
|
|
42873
|
+
required: string[];
|
|
42874
|
+
type: string;
|
|
42875
|
+
};
|
|
42876
|
+
};
|
|
42877
|
+
};
|
|
42878
|
+
description: string;
|
|
42879
|
+
};
|
|
42880
|
+
400: {
|
|
42881
|
+
description: string;
|
|
42882
|
+
};
|
|
42883
|
+
401: {
|
|
42884
|
+
description: string;
|
|
42885
|
+
};
|
|
42886
|
+
};
|
|
42887
|
+
security: ({
|
|
42888
|
+
pat_with_workspace: never[];
|
|
42889
|
+
console_session_with_workspace?: never;
|
|
42890
|
+
api_key?: never;
|
|
42891
|
+
} | {
|
|
42892
|
+
console_session_with_workspace: never[];
|
|
42893
|
+
pat_with_workspace?: never;
|
|
42894
|
+
api_key?: never;
|
|
42895
|
+
} | {
|
|
42896
|
+
api_key: never[];
|
|
42897
|
+
pat_with_workspace?: never;
|
|
42898
|
+
console_session_with_workspace?: never;
|
|
42899
|
+
})[];
|
|
42900
|
+
summary: string;
|
|
42901
|
+
tags: never[];
|
|
42902
|
+
'x-fern-ignore': boolean;
|
|
42903
|
+
'x-response-key': null;
|
|
42904
|
+
'x-title': string;
|
|
42905
|
+
'x-undocumented': string;
|
|
42906
|
+
};
|
|
42481
42907
|
};
|
|
42482
42908
|
'/unstable_locations/create': {
|
|
42483
42909
|
post: {
|
|
@@ -42552,6 +42978,10 @@ declare const _default: {
|
|
|
42552
42978
|
format: string;
|
|
42553
42979
|
type: string;
|
|
42554
42980
|
};
|
|
42981
|
+
name: {
|
|
42982
|
+
description: string;
|
|
42983
|
+
type: string;
|
|
42984
|
+
};
|
|
42555
42985
|
time_zone: {
|
|
42556
42986
|
description: string;
|
|
42557
42987
|
type: string;
|
|
@@ -42729,6 +43159,10 @@ declare const _default: {
|
|
|
42729
43159
|
format: string;
|
|
42730
43160
|
type: string;
|
|
42731
43161
|
};
|
|
43162
|
+
name: {
|
|
43163
|
+
description: string;
|
|
43164
|
+
type: string;
|
|
43165
|
+
};
|
|
42732
43166
|
time_zone: {
|
|
42733
43167
|
description: string;
|
|
42734
43168
|
type: string;
|
|
@@ -42825,6 +43259,10 @@ declare const _default: {
|
|
|
42825
43259
|
format: string;
|
|
42826
43260
|
type: string;
|
|
42827
43261
|
};
|
|
43262
|
+
name: {
|
|
43263
|
+
description: string;
|
|
43264
|
+
type: string;
|
|
43265
|
+
};
|
|
42828
43266
|
time_zone: {
|
|
42829
43267
|
description: string;
|
|
42830
43268
|
type: string;
|
|
@@ -42919,6 +43357,10 @@ declare const _default: {
|
|
|
42919
43357
|
format: string;
|
|
42920
43358
|
type: string;
|
|
42921
43359
|
};
|
|
43360
|
+
name: {
|
|
43361
|
+
description: string;
|
|
43362
|
+
type: string;
|
|
43363
|
+
};
|
|
42922
43364
|
time_zone: {
|
|
42923
43365
|
description: string;
|
|
42924
43366
|
type: string;
|
|
@@ -43049,6 +43491,137 @@ declare const _default: {
|
|
|
43049
43491
|
};
|
|
43050
43492
|
};
|
|
43051
43493
|
'/unstable_locations/update': {
|
|
43494
|
+
patch: {
|
|
43495
|
+
description: string;
|
|
43496
|
+
operationId: string;
|
|
43497
|
+
requestBody: {
|
|
43498
|
+
content: {
|
|
43499
|
+
'application/json': {
|
|
43500
|
+
schema: {
|
|
43501
|
+
properties: {
|
|
43502
|
+
geolocation: {
|
|
43503
|
+
properties: {
|
|
43504
|
+
latitude: {
|
|
43505
|
+
format: string;
|
|
43506
|
+
type: string;
|
|
43507
|
+
};
|
|
43508
|
+
longitude: {
|
|
43509
|
+
format: string;
|
|
43510
|
+
type: string;
|
|
43511
|
+
};
|
|
43512
|
+
};
|
|
43513
|
+
required: string[];
|
|
43514
|
+
type: string;
|
|
43515
|
+
};
|
|
43516
|
+
location_id: {
|
|
43517
|
+
format: string;
|
|
43518
|
+
type: string;
|
|
43519
|
+
};
|
|
43520
|
+
name: {
|
|
43521
|
+
type: string;
|
|
43522
|
+
};
|
|
43523
|
+
time_zone: {
|
|
43524
|
+
type: string;
|
|
43525
|
+
};
|
|
43526
|
+
};
|
|
43527
|
+
required: string[];
|
|
43528
|
+
type: string;
|
|
43529
|
+
};
|
|
43530
|
+
};
|
|
43531
|
+
};
|
|
43532
|
+
};
|
|
43533
|
+
responses: {
|
|
43534
|
+
200: {
|
|
43535
|
+
content: {
|
|
43536
|
+
'application/json': {
|
|
43537
|
+
schema: {
|
|
43538
|
+
properties: {
|
|
43539
|
+
location: {
|
|
43540
|
+
properties: {
|
|
43541
|
+
created_at: {
|
|
43542
|
+
description: string;
|
|
43543
|
+
format: string;
|
|
43544
|
+
type: string;
|
|
43545
|
+
};
|
|
43546
|
+
display_name: {
|
|
43547
|
+
description: string;
|
|
43548
|
+
type: string;
|
|
43549
|
+
};
|
|
43550
|
+
geolocation: {
|
|
43551
|
+
description: string;
|
|
43552
|
+
properties: {
|
|
43553
|
+
latitude: {
|
|
43554
|
+
format: string;
|
|
43555
|
+
type: string;
|
|
43556
|
+
};
|
|
43557
|
+
longitude: {
|
|
43558
|
+
format: string;
|
|
43559
|
+
type: string;
|
|
43560
|
+
};
|
|
43561
|
+
};
|
|
43562
|
+
required: string[];
|
|
43563
|
+
type: string;
|
|
43564
|
+
};
|
|
43565
|
+
location_id: {
|
|
43566
|
+
description: string;
|
|
43567
|
+
format: string;
|
|
43568
|
+
type: string;
|
|
43569
|
+
};
|
|
43570
|
+
name: {
|
|
43571
|
+
description: string;
|
|
43572
|
+
type: string;
|
|
43573
|
+
};
|
|
43574
|
+
time_zone: {
|
|
43575
|
+
description: string;
|
|
43576
|
+
type: string;
|
|
43577
|
+
};
|
|
43578
|
+
workspace_id: {
|
|
43579
|
+
description: string;
|
|
43580
|
+
format: string;
|
|
43581
|
+
type: string;
|
|
43582
|
+
};
|
|
43583
|
+
};
|
|
43584
|
+
required: string[];
|
|
43585
|
+
type: string;
|
|
43586
|
+
};
|
|
43587
|
+
ok: {
|
|
43588
|
+
type: string;
|
|
43589
|
+
};
|
|
43590
|
+
};
|
|
43591
|
+
required: string[];
|
|
43592
|
+
type: string;
|
|
43593
|
+
};
|
|
43594
|
+
};
|
|
43595
|
+
};
|
|
43596
|
+
description: string;
|
|
43597
|
+
};
|
|
43598
|
+
400: {
|
|
43599
|
+
description: string;
|
|
43600
|
+
};
|
|
43601
|
+
401: {
|
|
43602
|
+
description: string;
|
|
43603
|
+
};
|
|
43604
|
+
};
|
|
43605
|
+
security: ({
|
|
43606
|
+
pat_with_workspace: never[];
|
|
43607
|
+
console_session_with_workspace?: never;
|
|
43608
|
+
api_key?: never;
|
|
43609
|
+
} | {
|
|
43610
|
+
console_session_with_workspace: never[];
|
|
43611
|
+
pat_with_workspace?: never;
|
|
43612
|
+
api_key?: never;
|
|
43613
|
+
} | {
|
|
43614
|
+
api_key: never[];
|
|
43615
|
+
pat_with_workspace?: never;
|
|
43616
|
+
console_session_with_workspace?: never;
|
|
43617
|
+
})[];
|
|
43618
|
+
summary: string;
|
|
43619
|
+
tags: never[];
|
|
43620
|
+
'x-fern-ignore': boolean;
|
|
43621
|
+
'x-response-key': string;
|
|
43622
|
+
'x-title': string;
|
|
43623
|
+
'x-undocumented': string;
|
|
43624
|
+
};
|
|
43052
43625
|
post: {
|
|
43053
43626
|
description: string;
|
|
43054
43627
|
operationId: string;
|
|
@@ -43125,6 +43698,10 @@ declare const _default: {
|
|
|
43125
43698
|
format: string;
|
|
43126
43699
|
type: string;
|
|
43127
43700
|
};
|
|
43701
|
+
name: {
|
|
43702
|
+
description: string;
|
|
43703
|
+
type: string;
|
|
43704
|
+
};
|
|
43128
43705
|
time_zone: {
|
|
43129
43706
|
description: string;
|
|
43130
43707
|
type: string;
|
|
@@ -73701,6 +74278,27 @@ interface Routes {
|
|
|
73701
74278
|
bridge_client_name: string;
|
|
73702
74279
|
bridge_client_time_zone: string;
|
|
73703
74280
|
bridge_client_machine_identifier_key: string;
|
|
74281
|
+
errors: Array<{
|
|
74282
|
+
message: string;
|
|
74283
|
+
created_at: string;
|
|
74284
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74285
|
+
error_code: 'bridge_lan_unreachable';
|
|
74286
|
+
/** Seam cannot reach the tailscale proxy */
|
|
74287
|
+
is_tailscale_proxy_reachable: boolean;
|
|
74288
|
+
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
74289
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
74290
|
+
/** Tailscale proxy cannot reach the Tailscale network */
|
|
74291
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
74292
|
+
/** Tailscale proxy cannot reach the bridge */
|
|
74293
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
74294
|
+
/** Bridge's SOCKS server is unhealthy */
|
|
74295
|
+
is_bridge_socks_server_healthy: boolean;
|
|
74296
|
+
} | {
|
|
74297
|
+
message: string;
|
|
74298
|
+
created_at: string;
|
|
74299
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74300
|
+
error_code: 'no_communication_from_bridge';
|
|
74301
|
+
}>;
|
|
73704
74302
|
};
|
|
73705
74303
|
};
|
|
73706
74304
|
};
|
|
@@ -73724,6 +74322,27 @@ interface Routes {
|
|
|
73724
74322
|
bridge_client_name: string;
|
|
73725
74323
|
bridge_client_time_zone: string;
|
|
73726
74324
|
bridge_client_machine_identifier_key: string;
|
|
74325
|
+
errors: Array<{
|
|
74326
|
+
message: string;
|
|
74327
|
+
created_at: string;
|
|
74328
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74329
|
+
error_code: 'bridge_lan_unreachable';
|
|
74330
|
+
/** Seam cannot reach the tailscale proxy */
|
|
74331
|
+
is_tailscale_proxy_reachable: boolean;
|
|
74332
|
+
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
74333
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
74334
|
+
/** Tailscale proxy cannot reach the Tailscale network */
|
|
74335
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
74336
|
+
/** Tailscale proxy cannot reach the bridge */
|
|
74337
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
74338
|
+
/** Bridge's SOCKS server is unhealthy */
|
|
74339
|
+
is_bridge_socks_server_healthy: boolean;
|
|
74340
|
+
} | {
|
|
74341
|
+
message: string;
|
|
74342
|
+
created_at: string;
|
|
74343
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74344
|
+
error_code: 'no_communication_from_bridge';
|
|
74345
|
+
}>;
|
|
73727
74346
|
};
|
|
73728
74347
|
};
|
|
73729
74348
|
};
|
|
@@ -73747,6 +74366,27 @@ interface Routes {
|
|
|
73747
74366
|
bridge_client_name: string;
|
|
73748
74367
|
bridge_client_time_zone: string;
|
|
73749
74368
|
bridge_client_machine_identifier_key: string;
|
|
74369
|
+
errors: Array<{
|
|
74370
|
+
message: string;
|
|
74371
|
+
created_at: string;
|
|
74372
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74373
|
+
error_code: 'bridge_lan_unreachable';
|
|
74374
|
+
/** Seam cannot reach the tailscale proxy */
|
|
74375
|
+
is_tailscale_proxy_reachable: boolean;
|
|
74376
|
+
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
74377
|
+
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
74378
|
+
/** Tailscale proxy cannot reach the Tailscale network */
|
|
74379
|
+
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
74380
|
+
/** Tailscale proxy cannot reach the bridge */
|
|
74381
|
+
can_tailscale_proxy_reach_bridge: boolean;
|
|
74382
|
+
/** Bridge's SOCKS server is unhealthy */
|
|
74383
|
+
is_bridge_socks_server_healthy: boolean;
|
|
74384
|
+
} | {
|
|
74385
|
+
message: string;
|
|
74386
|
+
created_at: string;
|
|
74387
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
74388
|
+
error_code: 'no_communication_from_bridge';
|
|
74389
|
+
}>;
|
|
73750
74390
|
};
|
|
73751
74391
|
};
|
|
73752
74392
|
};
|
|
@@ -82519,7 +83159,7 @@ interface Routes {
|
|
|
82519
83159
|
};
|
|
82520
83160
|
'/unstable_locations/add_devices': {
|
|
82521
83161
|
route: '/unstable_locations/add_devices';
|
|
82522
|
-
method: 'POST';
|
|
83162
|
+
method: 'POST' | 'PUT';
|
|
82523
83163
|
queryParams: {};
|
|
82524
83164
|
jsonBody: {
|
|
82525
83165
|
location_id: string;
|
|
@@ -82549,6 +83189,8 @@ interface Routes {
|
|
|
82549
83189
|
location_id: string;
|
|
82550
83190
|
/** Unique identifier for the Seam workspace associated with the location. */
|
|
82551
83191
|
workspace_id: string;
|
|
83192
|
+
/** Name of the location. */
|
|
83193
|
+
name: string;
|
|
82552
83194
|
/** Display name of the location. */
|
|
82553
83195
|
display_name: string;
|
|
82554
83196
|
/** Geographical location of the location. */
|
|
@@ -82589,6 +83231,8 @@ interface Routes {
|
|
|
82589
83231
|
location_id: string;
|
|
82590
83232
|
/** Unique identifier for the Seam workspace associated with the location. */
|
|
82591
83233
|
workspace_id: string;
|
|
83234
|
+
/** Name of the location. */
|
|
83235
|
+
name: string;
|
|
82592
83236
|
/** Display name of the location. */
|
|
82593
83237
|
display_name: string;
|
|
82594
83238
|
/** Geographical location of the location. */
|
|
@@ -82616,6 +83260,8 @@ interface Routes {
|
|
|
82616
83260
|
location_id: string;
|
|
82617
83261
|
/** Unique identifier for the Seam workspace associated with the location. */
|
|
82618
83262
|
workspace_id: string;
|
|
83263
|
+
/** Name of the location. */
|
|
83264
|
+
name: string;
|
|
82619
83265
|
/** Display name of the location. */
|
|
82620
83266
|
display_name: string;
|
|
82621
83267
|
/** Geographical location of the location. */
|
|
@@ -82632,19 +83278,19 @@ interface Routes {
|
|
|
82632
83278
|
};
|
|
82633
83279
|
'/unstable_locations/remove_devices': {
|
|
82634
83280
|
route: '/unstable_locations/remove_devices';
|
|
82635
|
-
method: 'POST';
|
|
83281
|
+
method: 'POST' | 'DELETE';
|
|
82636
83282
|
queryParams: {};
|
|
82637
|
-
jsonBody: {
|
|
83283
|
+
jsonBody: {};
|
|
83284
|
+
commonParams: {
|
|
82638
83285
|
location_id: string;
|
|
82639
83286
|
device_ids: string[];
|
|
82640
83287
|
};
|
|
82641
|
-
commonParams: {};
|
|
82642
83288
|
formData: {};
|
|
82643
83289
|
jsonResponse: {};
|
|
82644
83290
|
};
|
|
82645
83291
|
'/unstable_locations/update': {
|
|
82646
83292
|
route: '/unstable_locations/update';
|
|
82647
|
-
method: 'POST';
|
|
83293
|
+
method: 'POST' | 'PATCH';
|
|
82648
83294
|
queryParams: {};
|
|
82649
83295
|
jsonBody: {
|
|
82650
83296
|
location_id: string;
|
|
@@ -82663,6 +83309,8 @@ interface Routes {
|
|
|
82663
83309
|
location_id: string;
|
|
82664
83310
|
/** Unique identifier for the Seam workspace associated with the location. */
|
|
82665
83311
|
workspace_id: string;
|
|
83312
|
+
/** Name of the location. */
|
|
83313
|
+
name: string;
|
|
82666
83314
|
/** Display name of the location. */
|
|
82667
83315
|
display_name: string;
|
|
82668
83316
|
/** Geographical location of the location. */
|