@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.
@@ -1,4 +1,168 @@
1
1
  import { z } from 'zod';
2
+ export declare const bridge_lan_unreachable: z.ZodObject<z.objectUtil.extendShape<{
3
+ message: z.ZodString;
4
+ created_at: z.ZodString;
5
+ }, {
6
+ error_code: z.ZodLiteral<"bridge_lan_unreachable">;
7
+ is_tailscale_proxy_reachable: z.ZodBoolean;
8
+ is_tailscale_proxy_socks_server_healthy: z.ZodBoolean;
9
+ can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean;
10
+ can_tailscale_proxy_reach_bridge: z.ZodBoolean;
11
+ is_bridge_socks_server_healthy: z.ZodBoolean;
12
+ }>, "strip", z.ZodTypeAny, {
13
+ message: string;
14
+ created_at: string;
15
+ error_code: "bridge_lan_unreachable";
16
+ is_tailscale_proxy_reachable: boolean;
17
+ is_tailscale_proxy_socks_server_healthy: boolean;
18
+ can_tailscale_proxy_reach_tailscale_network: boolean;
19
+ can_tailscale_proxy_reach_bridge: boolean;
20
+ is_bridge_socks_server_healthy: boolean;
21
+ }, {
22
+ message: string;
23
+ created_at: string;
24
+ error_code: "bridge_lan_unreachable";
25
+ is_tailscale_proxy_reachable: boolean;
26
+ is_tailscale_proxy_socks_server_healthy: boolean;
27
+ can_tailscale_proxy_reach_tailscale_network: boolean;
28
+ can_tailscale_proxy_reach_bridge: boolean;
29
+ is_bridge_socks_server_healthy: boolean;
30
+ }>;
31
+ export declare const no_communication_from_bridge: z.ZodObject<z.objectUtil.extendShape<{
32
+ message: z.ZodString;
33
+ created_at: z.ZodString;
34
+ }, {
35
+ error_code: z.ZodLiteral<"no_communication_from_bridge">;
36
+ }>, "strip", z.ZodTypeAny, {
37
+ message: string;
38
+ created_at: string;
39
+ error_code: "no_communication_from_bridge";
40
+ }, {
41
+ message: string;
42
+ created_at: string;
43
+ error_code: "no_communication_from_bridge";
44
+ }>;
45
+ export declare const bridge_client_session_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
46
+ message: z.ZodString;
47
+ created_at: z.ZodString;
48
+ }, {
49
+ error_code: z.ZodLiteral<"bridge_lan_unreachable">;
50
+ is_tailscale_proxy_reachable: z.ZodBoolean;
51
+ is_tailscale_proxy_socks_server_healthy: z.ZodBoolean;
52
+ can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean;
53
+ can_tailscale_proxy_reach_bridge: z.ZodBoolean;
54
+ is_bridge_socks_server_healthy: z.ZodBoolean;
55
+ }>, "strip", z.ZodTypeAny, {
56
+ message: string;
57
+ created_at: string;
58
+ error_code: "bridge_lan_unreachable";
59
+ is_tailscale_proxy_reachable: boolean;
60
+ is_tailscale_proxy_socks_server_healthy: boolean;
61
+ can_tailscale_proxy_reach_tailscale_network: boolean;
62
+ can_tailscale_proxy_reach_bridge: boolean;
63
+ is_bridge_socks_server_healthy: boolean;
64
+ }, {
65
+ message: string;
66
+ created_at: string;
67
+ error_code: "bridge_lan_unreachable";
68
+ is_tailscale_proxy_reachable: boolean;
69
+ is_tailscale_proxy_socks_server_healthy: boolean;
70
+ can_tailscale_proxy_reach_tailscale_network: boolean;
71
+ can_tailscale_proxy_reach_bridge: boolean;
72
+ is_bridge_socks_server_healthy: boolean;
73
+ }>, z.ZodObject<z.objectUtil.extendShape<{
74
+ message: z.ZodString;
75
+ created_at: z.ZodString;
76
+ }, {
77
+ error_code: z.ZodLiteral<"no_communication_from_bridge">;
78
+ }>, "strip", z.ZodTypeAny, {
79
+ message: string;
80
+ created_at: string;
81
+ error_code: "no_communication_from_bridge";
82
+ }, {
83
+ message: string;
84
+ created_at: string;
85
+ error_code: "no_communication_from_bridge";
86
+ }>]>;
87
+ export type BridgeClientSessionError = z.infer<typeof bridge_client_session_error>;
88
+ declare const bridge_client_session_error_map: z.ZodObject<{
89
+ bridge_lan_unreachable: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
90
+ message: z.ZodString;
91
+ created_at: z.ZodString;
92
+ }, {
93
+ error_code: z.ZodLiteral<"bridge_lan_unreachable">;
94
+ is_tailscale_proxy_reachable: z.ZodBoolean;
95
+ is_tailscale_proxy_socks_server_healthy: z.ZodBoolean;
96
+ can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean;
97
+ can_tailscale_proxy_reach_bridge: z.ZodBoolean;
98
+ is_bridge_socks_server_healthy: z.ZodBoolean;
99
+ }>, "strip", z.ZodTypeAny, {
100
+ message: string;
101
+ created_at: string;
102
+ error_code: "bridge_lan_unreachable";
103
+ is_tailscale_proxy_reachable: boolean;
104
+ is_tailscale_proxy_socks_server_healthy: boolean;
105
+ can_tailscale_proxy_reach_tailscale_network: boolean;
106
+ can_tailscale_proxy_reach_bridge: boolean;
107
+ is_bridge_socks_server_healthy: boolean;
108
+ }, {
109
+ message: string;
110
+ created_at: string;
111
+ error_code: "bridge_lan_unreachable";
112
+ is_tailscale_proxy_reachable: boolean;
113
+ is_tailscale_proxy_socks_server_healthy: boolean;
114
+ can_tailscale_proxy_reach_tailscale_network: boolean;
115
+ can_tailscale_proxy_reach_bridge: boolean;
116
+ is_bridge_socks_server_healthy: boolean;
117
+ }>>>;
118
+ no_communication_from_bridge: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
119
+ message: z.ZodString;
120
+ created_at: z.ZodString;
121
+ }, {
122
+ error_code: z.ZodLiteral<"no_communication_from_bridge">;
123
+ }>, "strip", z.ZodTypeAny, {
124
+ message: string;
125
+ created_at: string;
126
+ error_code: "no_communication_from_bridge";
127
+ }, {
128
+ message: string;
129
+ created_at: string;
130
+ error_code: "no_communication_from_bridge";
131
+ }>>>;
132
+ }, "strip", z.ZodTypeAny, {
133
+ bridge_lan_unreachable?: {
134
+ message: string;
135
+ created_at: string;
136
+ error_code: "bridge_lan_unreachable";
137
+ is_tailscale_proxy_reachable: boolean;
138
+ is_tailscale_proxy_socks_server_healthy: boolean;
139
+ can_tailscale_proxy_reach_tailscale_network: boolean;
140
+ can_tailscale_proxy_reach_bridge: boolean;
141
+ is_bridge_socks_server_healthy: boolean;
142
+ } | null | undefined;
143
+ no_communication_from_bridge?: {
144
+ message: string;
145
+ created_at: string;
146
+ error_code: "no_communication_from_bridge";
147
+ } | null | undefined;
148
+ }, {
149
+ bridge_lan_unreachable?: {
150
+ message: string;
151
+ created_at: string;
152
+ error_code: "bridge_lan_unreachable";
153
+ is_tailscale_proxy_reachable: boolean;
154
+ is_tailscale_proxy_socks_server_healthy: boolean;
155
+ can_tailscale_proxy_reach_tailscale_network: boolean;
156
+ can_tailscale_proxy_reach_bridge: boolean;
157
+ is_bridge_socks_server_healthy: boolean;
158
+ } | null | undefined;
159
+ no_communication_from_bridge?: {
160
+ message: string;
161
+ created_at: string;
162
+ error_code: "no_communication_from_bridge";
163
+ } | null | undefined;
164
+ }>;
165
+ export type BridgeClientSessionErrorMap = z.infer<typeof bridge_client_session_error_map>;
2
166
  export declare const bridge_client_session: z.ZodObject<{
3
167
  created_at: z.ZodString;
4
168
  bridge_client_session_id: z.ZodString;
@@ -10,8 +174,64 @@ export declare const bridge_client_session: z.ZodObject<{
10
174
  bridge_client_name: z.ZodString;
11
175
  bridge_client_time_zone: z.ZodString;
12
176
  bridge_client_machine_identifier_key: z.ZodString;
177
+ errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
178
+ message: z.ZodString;
179
+ created_at: z.ZodString;
180
+ }, {
181
+ error_code: z.ZodLiteral<"bridge_lan_unreachable">;
182
+ is_tailscale_proxy_reachable: z.ZodBoolean;
183
+ is_tailscale_proxy_socks_server_healthy: z.ZodBoolean;
184
+ can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean;
185
+ can_tailscale_proxy_reach_bridge: z.ZodBoolean;
186
+ is_bridge_socks_server_healthy: z.ZodBoolean;
187
+ }>, "strip", z.ZodTypeAny, {
188
+ message: string;
189
+ created_at: string;
190
+ error_code: "bridge_lan_unreachable";
191
+ is_tailscale_proxy_reachable: boolean;
192
+ is_tailscale_proxy_socks_server_healthy: boolean;
193
+ can_tailscale_proxy_reach_tailscale_network: boolean;
194
+ can_tailscale_proxy_reach_bridge: boolean;
195
+ is_bridge_socks_server_healthy: boolean;
196
+ }, {
197
+ message: string;
198
+ created_at: string;
199
+ error_code: "bridge_lan_unreachable";
200
+ is_tailscale_proxy_reachable: boolean;
201
+ is_tailscale_proxy_socks_server_healthy: boolean;
202
+ can_tailscale_proxy_reach_tailscale_network: boolean;
203
+ can_tailscale_proxy_reach_bridge: boolean;
204
+ is_bridge_socks_server_healthy: boolean;
205
+ }>, z.ZodObject<z.objectUtil.extendShape<{
206
+ message: z.ZodString;
207
+ created_at: z.ZodString;
208
+ }, {
209
+ error_code: z.ZodLiteral<"no_communication_from_bridge">;
210
+ }>, "strip", z.ZodTypeAny, {
211
+ message: string;
212
+ created_at: string;
213
+ error_code: "no_communication_from_bridge";
214
+ }, {
215
+ message: string;
216
+ created_at: string;
217
+ error_code: "no_communication_from_bridge";
218
+ }>]>, "many">;
13
219
  }, "strip", z.ZodTypeAny, {
14
220
  created_at: string;
221
+ errors: ({
222
+ message: string;
223
+ created_at: string;
224
+ error_code: "bridge_lan_unreachable";
225
+ is_tailscale_proxy_reachable: boolean;
226
+ is_tailscale_proxy_socks_server_healthy: boolean;
227
+ can_tailscale_proxy_reach_tailscale_network: boolean;
228
+ can_tailscale_proxy_reach_bridge: boolean;
229
+ is_bridge_socks_server_healthy: boolean;
230
+ } | {
231
+ message: string;
232
+ created_at: string;
233
+ error_code: "no_communication_from_bridge";
234
+ })[];
15
235
  bridge_client_session_id: string;
16
236
  bridge_client_session_token: string;
17
237
  pairing_code: string;
@@ -23,6 +243,20 @@ export declare const bridge_client_session: z.ZodObject<{
23
243
  bridge_client_machine_identifier_key: string;
24
244
  }, {
25
245
  created_at: string;
246
+ errors: ({
247
+ message: string;
248
+ created_at: string;
249
+ error_code: "bridge_lan_unreachable";
250
+ is_tailscale_proxy_reachable: boolean;
251
+ is_tailscale_proxy_socks_server_healthy: boolean;
252
+ can_tailscale_proxy_reach_tailscale_network: boolean;
253
+ can_tailscale_proxy_reach_bridge: boolean;
254
+ is_bridge_socks_server_healthy: boolean;
255
+ } | {
256
+ message: string;
257
+ created_at: string;
258
+ error_code: "no_communication_from_bridge";
259
+ })[];
26
260
  bridge_client_session_id: string;
27
261
  bridge_client_session_token: string;
28
262
  pairing_code: string;
@@ -34,3 +268,4 @@ export declare const bridge_client_session: z.ZodObject<{
34
268
  bridge_client_machine_identifier_key: string;
35
269
  }>;
36
270
  export type BridgeClientSession = z.infer<typeof bridge_client_session>;
271
+ export {};
@@ -1,4 +1,50 @@
1
1
  import { z } from 'zod';
2
+ const common_bridge_client_session_error = z.object({
3
+ message: z.string(),
4
+ created_at: z.string().datetime(),
5
+ });
6
+ const error_code_description = 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.';
7
+ export const bridge_lan_unreachable = common_bridge_client_session_error
8
+ .extend({
9
+ error_code: z
10
+ .literal('bridge_lan_unreachable')
11
+ .describe(error_code_description),
12
+ is_tailscale_proxy_reachable: z
13
+ .boolean()
14
+ .describe('Seam cannot reach the tailscale proxy'),
15
+ is_tailscale_proxy_socks_server_healthy: z
16
+ .boolean()
17
+ .describe("Tailscale proxy's SOCKS server is unhealthy"),
18
+ can_tailscale_proxy_reach_tailscale_network: z
19
+ .boolean()
20
+ .describe('Tailscale proxy cannot reach the Tailscale network'),
21
+ can_tailscale_proxy_reach_bridge: z
22
+ .boolean()
23
+ .describe('Tailscale proxy cannot reach the bridge'),
24
+ is_bridge_socks_server_healthy: z
25
+ .boolean()
26
+ .describe("Bridge's SOCKS server is unhealthy"),
27
+ })
28
+ .describe("Seam cannot reach the bridge's LAN");
29
+ export const no_communication_from_bridge = common_bridge_client_session_error
30
+ .extend({
31
+ error_code: z
32
+ .literal('no_communication_from_bridge')
33
+ .describe(error_code_description),
34
+ })
35
+ .describe('Bridge has stopped communicating with Seam');
36
+ export const bridge_client_session_error = z
37
+ .discriminatedUnion('error_code', [
38
+ bridge_lan_unreachable,
39
+ no_communication_from_bridge,
40
+ ])
41
+ .describe('Error associated with the `bridge_client_session`.');
42
+ const bridge_client_session_error_map = z.object({
43
+ bridge_lan_unreachable: bridge_lan_unreachable.optional().nullable(),
44
+ no_communication_from_bridge: no_communication_from_bridge
45
+ .optional()
46
+ .nullable(),
47
+ });
2
48
  export const bridge_client_session = z.object({
3
49
  created_at: z.string().datetime(),
4
50
  bridge_client_session_id: z.string().uuid(),
@@ -10,6 +56,7 @@ export const bridge_client_session = z.object({
10
56
  bridge_client_name: z.string(),
11
57
  bridge_client_time_zone: z.string(),
12
58
  bridge_client_machine_identifier_key: z.string(),
59
+ errors: z.array(bridge_client_session_error),
13
60
  }).describe(`
14
61
  ---
15
62
  route_path: /seam/bridge/v1/bridge_client_sessions
@@ -1 +1 @@
1
- {"version":3,"file":"bridge_client_session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge_client_session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;IACvC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAClC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9C,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;CACjD,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
1
+ {"version":3,"file":"bridge_client_session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/bridges/bridge_client_session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,CAAC,MAAM,sBAAsB,GAAG,kCAAkC;KACrE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,wBAAwB,CAAC;SACjC,QAAQ,CAAC,sBAAsB,CAAC;IACnC,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,CAAC,uCAAuC,CAAC;IACpD,uCAAuC,EAAE,CAAC;SACvC,OAAO,EAAE;SACT,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gCAAgC,EAAE,CAAC;SAChC,OAAO,EAAE;SACT,QAAQ,CAAC,yCAAyC,CAAC;IACtD,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,QAAQ,CAAC,oCAAoC,CAAC;CAClD,CAAC;KACD,QAAQ,CAAC,oCAAoC,CAAC,CAAA;AAEjD,MAAM,CAAC,MAAM,4BAA4B,GAAG,kCAAkC;KAC3E,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,8BAA8B,CAAC;SACvC,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACD,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAEzD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,kBAAkB,CAAC,YAAY,EAAE;IAChC,sBAAsB;IACtB,4BAA4B;CAC7B,CAAC;KACD,QAAQ,CAAC,oDAAoD,CAAC,CAAA;AAMjE,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,sBAAsB,EAAE,sBAAsB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpE,4BAA4B,EAAE,4BAA4B;SACvD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;IACvC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAClC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9C,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;IAChD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC;CAC7C,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
@@ -20479,6 +20479,77 @@ declare const _default: {
20479
20479
  format: string;
20480
20480
  type: string;
20481
20481
  };
20482
+ errors: {
20483
+ items: {
20484
+ description: string;
20485
+ discriminator: {
20486
+ propertyName: string;
20487
+ };
20488
+ oneOf: ({
20489
+ description: string;
20490
+ properties: {
20491
+ can_tailscale_proxy_reach_bridge: {
20492
+ description: string;
20493
+ type: string;
20494
+ };
20495
+ can_tailscale_proxy_reach_tailscale_network: {
20496
+ description: string;
20497
+ type: string;
20498
+ };
20499
+ created_at: {
20500
+ format: string;
20501
+ type: string;
20502
+ };
20503
+ error_code: {
20504
+ description: string;
20505
+ enum: string[];
20506
+ type: string;
20507
+ };
20508
+ is_bridge_socks_server_healthy: {
20509
+ description: string;
20510
+ type: string;
20511
+ };
20512
+ is_tailscale_proxy_reachable: {
20513
+ description: string;
20514
+ type: string;
20515
+ };
20516
+ is_tailscale_proxy_socks_server_healthy: {
20517
+ description: string;
20518
+ type: string;
20519
+ };
20520
+ message: {
20521
+ type: string;
20522
+ };
20523
+ };
20524
+ required: string[];
20525
+ type: string;
20526
+ } | {
20527
+ description: string;
20528
+ properties: {
20529
+ created_at: {
20530
+ format: string;
20531
+ type: string;
20532
+ };
20533
+ error_code: {
20534
+ description: string;
20535
+ enum: string[];
20536
+ type: string;
20537
+ };
20538
+ message: {
20539
+ type: string;
20540
+ };
20541
+ can_tailscale_proxy_reach_bridge?: never;
20542
+ can_tailscale_proxy_reach_tailscale_network?: never;
20543
+ is_bridge_socks_server_healthy?: never;
20544
+ is_tailscale_proxy_reachable?: never;
20545
+ is_tailscale_proxy_socks_server_healthy?: never;
20546
+ };
20547
+ required: string[];
20548
+ type: string;
20549
+ })[];
20550
+ };
20551
+ type: string;
20552
+ };
20482
20553
  pairing_code: {
20483
20554
  maxLength: number;
20484
20555
  minLength: number;
@@ -20564,6 +20635,77 @@ declare const _default: {
20564
20635
  format: string;
20565
20636
  type: string;
20566
20637
  };
20638
+ errors: {
20639
+ items: {
20640
+ description: string;
20641
+ discriminator: {
20642
+ propertyName: string;
20643
+ };
20644
+ oneOf: ({
20645
+ description: string;
20646
+ properties: {
20647
+ can_tailscale_proxy_reach_bridge: {
20648
+ description: string;
20649
+ type: string;
20650
+ };
20651
+ can_tailscale_proxy_reach_tailscale_network: {
20652
+ description: string;
20653
+ type: string;
20654
+ };
20655
+ created_at: {
20656
+ format: string;
20657
+ type: string;
20658
+ };
20659
+ error_code: {
20660
+ description: string;
20661
+ enum: string[];
20662
+ type: string;
20663
+ };
20664
+ is_bridge_socks_server_healthy: {
20665
+ description: string;
20666
+ type: string;
20667
+ };
20668
+ is_tailscale_proxy_reachable: {
20669
+ description: string;
20670
+ type: string;
20671
+ };
20672
+ is_tailscale_proxy_socks_server_healthy: {
20673
+ description: string;
20674
+ type: string;
20675
+ };
20676
+ message: {
20677
+ type: string;
20678
+ };
20679
+ };
20680
+ required: string[];
20681
+ type: string;
20682
+ } | {
20683
+ description: string;
20684
+ properties: {
20685
+ created_at: {
20686
+ format: string;
20687
+ type: string;
20688
+ };
20689
+ error_code: {
20690
+ description: string;
20691
+ enum: string[];
20692
+ type: string;
20693
+ };
20694
+ message: {
20695
+ type: string;
20696
+ };
20697
+ can_tailscale_proxy_reach_bridge?: never;
20698
+ can_tailscale_proxy_reach_tailscale_network?: never;
20699
+ is_bridge_socks_server_healthy?: never;
20700
+ is_tailscale_proxy_reachable?: never;
20701
+ is_tailscale_proxy_socks_server_healthy?: never;
20702
+ };
20703
+ required: string[];
20704
+ type: string;
20705
+ })[];
20706
+ };
20707
+ type: string;
20708
+ };
20567
20709
  pairing_code: {
20568
20710
  maxLength: number;
20569
20711
  minLength: number;
@@ -20645,6 +20787,77 @@ declare const _default: {
20645
20787
  format: string;
20646
20788
  type: string;
20647
20789
  };
20790
+ errors: {
20791
+ items: {
20792
+ description: string;
20793
+ discriminator: {
20794
+ propertyName: string;
20795
+ };
20796
+ oneOf: ({
20797
+ description: string;
20798
+ properties: {
20799
+ can_tailscale_proxy_reach_bridge: {
20800
+ description: string;
20801
+ type: string;
20802
+ };
20803
+ can_tailscale_proxy_reach_tailscale_network: {
20804
+ description: string;
20805
+ type: string;
20806
+ };
20807
+ created_at: {
20808
+ format: string;
20809
+ type: string;
20810
+ };
20811
+ error_code: {
20812
+ description: string;
20813
+ enum: string[];
20814
+ type: string;
20815
+ };
20816
+ is_bridge_socks_server_healthy: {
20817
+ description: string;
20818
+ type: string;
20819
+ };
20820
+ is_tailscale_proxy_reachable: {
20821
+ description: string;
20822
+ type: string;
20823
+ };
20824
+ is_tailscale_proxy_socks_server_healthy: {
20825
+ description: string;
20826
+ type: string;
20827
+ };
20828
+ message: {
20829
+ type: string;
20830
+ };
20831
+ };
20832
+ required: string[];
20833
+ type: string;
20834
+ } | {
20835
+ description: string;
20836
+ properties: {
20837
+ created_at: {
20838
+ format: string;
20839
+ type: string;
20840
+ };
20841
+ error_code: {
20842
+ description: string;
20843
+ enum: string[];
20844
+ type: string;
20845
+ };
20846
+ message: {
20847
+ type: string;
20848
+ };
20849
+ can_tailscale_proxy_reach_bridge?: never;
20850
+ can_tailscale_proxy_reach_tailscale_network?: never;
20851
+ is_bridge_socks_server_healthy?: never;
20852
+ is_tailscale_proxy_reachable?: never;
20853
+ is_tailscale_proxy_socks_server_healthy?: never;
20854
+ };
20855
+ required: string[];
20856
+ type: string;
20857
+ })[];
20858
+ };
20859
+ type: string;
20860
+ };
20648
20861
  pairing_code: {
20649
20862
  maxLength: number;
20650
20863
  minLength: number;
@@ -20730,6 +20943,77 @@ declare const _default: {
20730
20943
  format: string;
20731
20944
  type: string;
20732
20945
  };
20946
+ errors: {
20947
+ items: {
20948
+ description: string;
20949
+ discriminator: {
20950
+ propertyName: string;
20951
+ };
20952
+ oneOf: ({
20953
+ description: string;
20954
+ properties: {
20955
+ can_tailscale_proxy_reach_bridge: {
20956
+ description: string;
20957
+ type: string;
20958
+ };
20959
+ can_tailscale_proxy_reach_tailscale_network: {
20960
+ description: string;
20961
+ type: string;
20962
+ };
20963
+ created_at: {
20964
+ format: string;
20965
+ type: string;
20966
+ };
20967
+ error_code: {
20968
+ description: string;
20969
+ enum: string[];
20970
+ type: string;
20971
+ };
20972
+ is_bridge_socks_server_healthy: {
20973
+ description: string;
20974
+ type: string;
20975
+ };
20976
+ is_tailscale_proxy_reachable: {
20977
+ description: string;
20978
+ type: string;
20979
+ };
20980
+ is_tailscale_proxy_socks_server_healthy: {
20981
+ description: string;
20982
+ type: string;
20983
+ };
20984
+ message: {
20985
+ type: string;
20986
+ };
20987
+ };
20988
+ required: string[];
20989
+ type: string;
20990
+ } | {
20991
+ description: string;
20992
+ properties: {
20993
+ created_at: {
20994
+ format: string;
20995
+ type: string;
20996
+ };
20997
+ error_code: {
20998
+ description: string;
20999
+ enum: string[];
21000
+ type: string;
21001
+ };
21002
+ message: {
21003
+ type: string;
21004
+ };
21005
+ can_tailscale_proxy_reach_bridge?: never;
21006
+ can_tailscale_proxy_reach_tailscale_network?: never;
21007
+ is_bridge_socks_server_healthy?: never;
21008
+ is_tailscale_proxy_reachable?: never;
21009
+ is_tailscale_proxy_socks_server_healthy?: never;
21010
+ };
21011
+ required: string[];
21012
+ type: string;
21013
+ })[];
21014
+ };
21015
+ type: string;
21016
+ };
20733
21017
  pairing_code: {
20734
21018
  maxLength: number;
20735
21019
  minLength: number;