@seamapi/types 1.376.0 → 1.378.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 +1669 -398
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1461 -183
- package/lib/seam/connect/models/access-codes/managed-access-code.js +48 -23
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +13 -2
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +28 -28
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +195 -10
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +16 -3
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +80 -80
- package/lib/seam/connect/models/bridges/bridge-client-session.js +5 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +295 -10
- package/lib/seam/connect/openapi.js +1587 -347
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1113 -120
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +95 -60
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +15 -2
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +17 -3
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +1923 -360
- package/src/lib/seam/connect/route-types.ts +1113 -120
|
@@ -137,45 +137,45 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
137
137
|
}, {
|
|
138
138
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
139
139
|
from: z.ZodObject<{
|
|
140
|
-
starts_at: z.ZodString
|
|
140
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
141
141
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
starts_at: string;
|
|
143
|
+
starts_at: string | null;
|
|
144
144
|
ends_at: string | null;
|
|
145
145
|
}, {
|
|
146
|
-
starts_at: string;
|
|
146
|
+
starts_at: string | null;
|
|
147
147
|
ends_at: string | null;
|
|
148
148
|
}>;
|
|
149
149
|
to: z.ZodObject<{
|
|
150
|
-
starts_at: z.ZodString
|
|
150
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
151
151
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
152
152
|
}, "strip", z.ZodTypeAny, {
|
|
153
|
-
starts_at: string;
|
|
153
|
+
starts_at: string | null;
|
|
154
154
|
ends_at: string | null;
|
|
155
155
|
}, {
|
|
156
|
-
starts_at: string;
|
|
156
|
+
starts_at: string | null;
|
|
157
157
|
ends_at: string | null;
|
|
158
158
|
}>;
|
|
159
159
|
}>, "strip", z.ZodTypeAny, {
|
|
160
160
|
created_at: string;
|
|
161
161
|
mutation_code: "updating_access_schedule";
|
|
162
162
|
from: {
|
|
163
|
-
starts_at: string;
|
|
163
|
+
starts_at: string | null;
|
|
164
164
|
ends_at: string | null;
|
|
165
165
|
};
|
|
166
166
|
to: {
|
|
167
|
-
starts_at: string;
|
|
167
|
+
starts_at: string | null;
|
|
168
168
|
ends_at: string | null;
|
|
169
169
|
};
|
|
170
170
|
}, {
|
|
171
171
|
created_at: string;
|
|
172
172
|
mutation_code: "updating_access_schedule";
|
|
173
173
|
from: {
|
|
174
|
-
starts_at: string;
|
|
174
|
+
starts_at: string | null;
|
|
175
175
|
ends_at: string | null;
|
|
176
176
|
};
|
|
177
177
|
to: {
|
|
178
|
-
starts_at: string;
|
|
178
|
+
starts_at: string | null;
|
|
179
179
|
ends_at: string | null;
|
|
180
180
|
};
|
|
181
181
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -275,6 +275,127 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
275
275
|
created_at: string;
|
|
276
276
|
mutation_code: "deleting";
|
|
277
277
|
}>>>;
|
|
278
|
+
updating_access_schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
279
|
+
created_at: z.ZodString;
|
|
280
|
+
}, {
|
|
281
|
+
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
282
|
+
from: z.ZodObject<{
|
|
283
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
284
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
285
|
+
}, "strip", z.ZodTypeAny, {
|
|
286
|
+
starts_at: string | null;
|
|
287
|
+
ends_at: string | null;
|
|
288
|
+
}, {
|
|
289
|
+
starts_at: string | null;
|
|
290
|
+
ends_at: string | null;
|
|
291
|
+
}>;
|
|
292
|
+
to: z.ZodObject<{
|
|
293
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
294
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
295
|
+
}, "strip", z.ZodTypeAny, {
|
|
296
|
+
starts_at: string | null;
|
|
297
|
+
ends_at: string | null;
|
|
298
|
+
}, {
|
|
299
|
+
starts_at: string | null;
|
|
300
|
+
ends_at: string | null;
|
|
301
|
+
}>;
|
|
302
|
+
}>, "strip", z.ZodTypeAny, {
|
|
303
|
+
created_at: string;
|
|
304
|
+
mutation_code: "updating_access_schedule";
|
|
305
|
+
from: {
|
|
306
|
+
starts_at: string | null;
|
|
307
|
+
ends_at: string | null;
|
|
308
|
+
};
|
|
309
|
+
to: {
|
|
310
|
+
starts_at: string | null;
|
|
311
|
+
ends_at: string | null;
|
|
312
|
+
};
|
|
313
|
+
}, {
|
|
314
|
+
created_at: string;
|
|
315
|
+
mutation_code: "updating_access_schedule";
|
|
316
|
+
from: {
|
|
317
|
+
starts_at: string | null;
|
|
318
|
+
ends_at: string | null;
|
|
319
|
+
};
|
|
320
|
+
to: {
|
|
321
|
+
starts_at: string | null;
|
|
322
|
+
ends_at: string | null;
|
|
323
|
+
};
|
|
324
|
+
}>>>;
|
|
325
|
+
updating_group_membership: z.ZodNullable<z.ZodOptional<z.ZodMap<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
326
|
+
created_at: z.ZodString;
|
|
327
|
+
}, {
|
|
328
|
+
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
329
|
+
from: z.ZodObject<{
|
|
330
|
+
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
331
|
+
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
acs_access_group_id: string | null;
|
|
333
|
+
}, {
|
|
334
|
+
acs_access_group_id: string | null;
|
|
335
|
+
}>;
|
|
336
|
+
to: z.ZodObject<{
|
|
337
|
+
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
338
|
+
}, "strip", z.ZodTypeAny, {
|
|
339
|
+
acs_access_group_id: string | null;
|
|
340
|
+
}, {
|
|
341
|
+
acs_access_group_id: string | null;
|
|
342
|
+
}>;
|
|
343
|
+
}>, "strip", z.ZodTypeAny, {
|
|
344
|
+
created_at: string;
|
|
345
|
+
mutation_code: "updating_group_membership";
|
|
346
|
+
from: {
|
|
347
|
+
acs_access_group_id: string | null;
|
|
348
|
+
};
|
|
349
|
+
to: {
|
|
350
|
+
acs_access_group_id: string | null;
|
|
351
|
+
};
|
|
352
|
+
}, {
|
|
353
|
+
created_at: string;
|
|
354
|
+
mutation_code: "updating_group_membership";
|
|
355
|
+
from: {
|
|
356
|
+
acs_access_group_id: string | null;
|
|
357
|
+
};
|
|
358
|
+
to: {
|
|
359
|
+
acs_access_group_id: string | null;
|
|
360
|
+
};
|
|
361
|
+
}>>>>;
|
|
362
|
+
updating_suspension_state: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
363
|
+
created_at: z.ZodString;
|
|
364
|
+
}, {
|
|
365
|
+
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
366
|
+
from: z.ZodObject<{
|
|
367
|
+
is_suspended: z.ZodBoolean;
|
|
368
|
+
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
is_suspended: boolean;
|
|
370
|
+
}, {
|
|
371
|
+
is_suspended: boolean;
|
|
372
|
+
}>;
|
|
373
|
+
to: z.ZodObject<{
|
|
374
|
+
is_suspended: z.ZodBoolean;
|
|
375
|
+
}, "strip", z.ZodTypeAny, {
|
|
376
|
+
is_suspended: boolean;
|
|
377
|
+
}, {
|
|
378
|
+
is_suspended: boolean;
|
|
379
|
+
}>;
|
|
380
|
+
}>, "strip", z.ZodTypeAny, {
|
|
381
|
+
created_at: string;
|
|
382
|
+
mutation_code: "updating_suspension_state";
|
|
383
|
+
from: {
|
|
384
|
+
is_suspended: boolean;
|
|
385
|
+
};
|
|
386
|
+
to: {
|
|
387
|
+
is_suspended: boolean;
|
|
388
|
+
};
|
|
389
|
+
}, {
|
|
390
|
+
created_at: string;
|
|
391
|
+
mutation_code: "updating_suspension_state";
|
|
392
|
+
from: {
|
|
393
|
+
is_suspended: boolean;
|
|
394
|
+
};
|
|
395
|
+
to: {
|
|
396
|
+
is_suspended: boolean;
|
|
397
|
+
};
|
|
398
|
+
}>>>;
|
|
278
399
|
'updating_user_information.full_name': z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
279
400
|
created_at: z.ZodString;
|
|
280
401
|
}, {
|
|
@@ -395,6 +516,38 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
395
516
|
created_at: string;
|
|
396
517
|
mutation_code: "deleting";
|
|
397
518
|
} | null | undefined;
|
|
519
|
+
updating_access_schedule?: {
|
|
520
|
+
created_at: string;
|
|
521
|
+
mutation_code: "updating_access_schedule";
|
|
522
|
+
from: {
|
|
523
|
+
starts_at: string | null;
|
|
524
|
+
ends_at: string | null;
|
|
525
|
+
};
|
|
526
|
+
to: {
|
|
527
|
+
starts_at: string | null;
|
|
528
|
+
ends_at: string | null;
|
|
529
|
+
};
|
|
530
|
+
} | null | undefined;
|
|
531
|
+
updating_suspension_state?: {
|
|
532
|
+
created_at: string;
|
|
533
|
+
mutation_code: "updating_suspension_state";
|
|
534
|
+
from: {
|
|
535
|
+
is_suspended: boolean;
|
|
536
|
+
};
|
|
537
|
+
to: {
|
|
538
|
+
is_suspended: boolean;
|
|
539
|
+
};
|
|
540
|
+
} | null | undefined;
|
|
541
|
+
updating_group_membership?: Map<string, {
|
|
542
|
+
created_at: string;
|
|
543
|
+
mutation_code: "updating_group_membership";
|
|
544
|
+
from: {
|
|
545
|
+
acs_access_group_id: string | null;
|
|
546
|
+
};
|
|
547
|
+
to: {
|
|
548
|
+
acs_access_group_id: string | null;
|
|
549
|
+
};
|
|
550
|
+
}> | null | undefined;
|
|
398
551
|
'updating_user_information.full_name'?: {
|
|
399
552
|
created_at: string;
|
|
400
553
|
mutation_code: "updating_user_information";
|
|
@@ -434,6 +587,38 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
434
587
|
created_at: string;
|
|
435
588
|
mutation_code: "deleting";
|
|
436
589
|
} | null | undefined;
|
|
590
|
+
updating_access_schedule?: {
|
|
591
|
+
created_at: string;
|
|
592
|
+
mutation_code: "updating_access_schedule";
|
|
593
|
+
from: {
|
|
594
|
+
starts_at: string | null;
|
|
595
|
+
ends_at: string | null;
|
|
596
|
+
};
|
|
597
|
+
to: {
|
|
598
|
+
starts_at: string | null;
|
|
599
|
+
ends_at: string | null;
|
|
600
|
+
};
|
|
601
|
+
} | null | undefined;
|
|
602
|
+
updating_suspension_state?: {
|
|
603
|
+
created_at: string;
|
|
604
|
+
mutation_code: "updating_suspension_state";
|
|
605
|
+
from: {
|
|
606
|
+
is_suspended: boolean;
|
|
607
|
+
};
|
|
608
|
+
to: {
|
|
609
|
+
is_suspended: boolean;
|
|
610
|
+
};
|
|
611
|
+
} | null | undefined;
|
|
612
|
+
updating_group_membership?: Map<string, {
|
|
613
|
+
created_at: string;
|
|
614
|
+
mutation_code: "updating_group_membership";
|
|
615
|
+
from: {
|
|
616
|
+
acs_access_group_id: string | null;
|
|
617
|
+
};
|
|
618
|
+
to: {
|
|
619
|
+
acs_access_group_id: string | null;
|
|
620
|
+
};
|
|
621
|
+
}> | null | undefined;
|
|
437
622
|
'updating_user_information.full_name'?: {
|
|
438
623
|
created_at: string;
|
|
439
624
|
mutation_code: "updating_user_information";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { phone_number } from '../../phone-number.js';
|
|
3
|
-
import { schedule } from '../../schedule.js';
|
|
4
3
|
const common_pending_mutation = z.object({
|
|
5
4
|
created_at: z.string().datetime(),
|
|
6
5
|
});
|
|
@@ -20,10 +19,14 @@ export const updating_user_information_mutation = common_pending_mutation.extend
|
|
|
20
19
|
from: acs_user_info.partial(),
|
|
21
20
|
to: acs_user_info.partial(),
|
|
22
21
|
});
|
|
22
|
+
const access_schedule = z.object({
|
|
23
|
+
starts_at: z.string().datetime().nullable(),
|
|
24
|
+
ends_at: z.string().datetime().nullable(),
|
|
25
|
+
});
|
|
23
26
|
const updating_access_schedule_mutation = common_pending_mutation.extend({
|
|
24
27
|
mutation_code: z.literal('updating_access_schedule'),
|
|
25
|
-
from:
|
|
26
|
-
to:
|
|
28
|
+
from: access_schedule,
|
|
29
|
+
to: access_schedule,
|
|
27
30
|
});
|
|
28
31
|
const updating_suspension_state_mutation = common_pending_mutation.extend({
|
|
29
32
|
mutation_code: z.literal('updating_suspension_state'),
|
|
@@ -50,6 +53,16 @@ export const acs_user_pending_mutations = z.discriminatedUnion('mutation_code',
|
|
|
50
53
|
export const acs_user_pending_mutations_map = z.object({
|
|
51
54
|
creating: creating.optional().nullable(),
|
|
52
55
|
deleting: deleting.optional().nullable(),
|
|
56
|
+
updating_access_schedule: updating_access_schedule_mutation
|
|
57
|
+
.optional()
|
|
58
|
+
.nullable(),
|
|
59
|
+
updating_group_membership: z
|
|
60
|
+
.map(z.string().uuid(), updating_group_membership_mutation)
|
|
61
|
+
.optional()
|
|
62
|
+
.nullable(),
|
|
63
|
+
updating_suspension_state: updating_suspension_state_mutation
|
|
64
|
+
.optional()
|
|
65
|
+
.nullable(),
|
|
53
66
|
'updating_user_information.full_name': common_pending_mutation
|
|
54
67
|
.extend({
|
|
55
68
|
mutation_code: z.literal('updating_user_information'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pending-mutations.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"pending-mutations.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,29 +4,29 @@ export declare const bridge_lan_unreachable: z.ZodObject<z.objectUtil.extendShap
|
|
|
4
4
|
created_at: z.ZodString;
|
|
5
5
|
}, {
|
|
6
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
|
|
7
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
8
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
9
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
10
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
11
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
12
12
|
}>, "strip", z.ZodTypeAny, {
|
|
13
13
|
message: string;
|
|
14
14
|
created_at: string;
|
|
15
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;
|
|
16
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
17
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
18
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
19
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
20
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
21
21
|
}, {
|
|
22
22
|
message: string;
|
|
23
23
|
created_at: string;
|
|
24
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;
|
|
25
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
26
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
27
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
28
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
29
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
30
30
|
}>;
|
|
31
31
|
export declare const no_communication_from_bridge: z.ZodObject<z.objectUtil.extendShape<{
|
|
32
32
|
message: z.ZodString;
|
|
@@ -47,29 +47,29 @@ export declare const bridge_client_session_error: z.ZodDiscriminatedUnion<"error
|
|
|
47
47
|
created_at: z.ZodString;
|
|
48
48
|
}, {
|
|
49
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
|
|
50
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
51
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
52
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
53
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
54
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
55
55
|
}>, "strip", z.ZodTypeAny, {
|
|
56
56
|
message: string;
|
|
57
57
|
created_at: string;
|
|
58
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;
|
|
59
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
60
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
61
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
62
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
63
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
64
64
|
}, {
|
|
65
65
|
message: string;
|
|
66
66
|
created_at: string;
|
|
67
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;
|
|
68
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
69
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
70
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
71
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
72
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
73
73
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
74
74
|
message: z.ZodString;
|
|
75
75
|
created_at: z.ZodString;
|
|
@@ -91,29 +91,29 @@ declare const bridge_client_session_error_map: z.ZodObject<{
|
|
|
91
91
|
created_at: z.ZodString;
|
|
92
92
|
}, {
|
|
93
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
|
|
94
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
95
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
96
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
97
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
98
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
99
99
|
}>, "strip", z.ZodTypeAny, {
|
|
100
100
|
message: string;
|
|
101
101
|
created_at: string;
|
|
102
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;
|
|
103
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
104
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
105
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
106
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
107
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
108
108
|
}, {
|
|
109
109
|
message: string;
|
|
110
110
|
created_at: string;
|
|
111
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;
|
|
112
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
113
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
114
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
115
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
116
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
117
117
|
}>>>;
|
|
118
118
|
no_communication_from_bridge: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
119
119
|
message: z.ZodString;
|
|
@@ -134,11 +134,11 @@ declare const bridge_client_session_error_map: z.ZodObject<{
|
|
|
134
134
|
message: string;
|
|
135
135
|
created_at: string;
|
|
136
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;
|
|
137
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
138
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
139
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
140
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
141
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
142
142
|
} | null | undefined;
|
|
143
143
|
no_communication_from_bridge?: {
|
|
144
144
|
message: string;
|
|
@@ -150,11 +150,11 @@ declare const bridge_client_session_error_map: z.ZodObject<{
|
|
|
150
150
|
message: string;
|
|
151
151
|
created_at: string;
|
|
152
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;
|
|
153
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
154
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
155
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
156
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
157
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
158
158
|
} | null | undefined;
|
|
159
159
|
no_communication_from_bridge?: {
|
|
160
160
|
message: string;
|
|
@@ -179,29 +179,29 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
179
179
|
created_at: z.ZodString;
|
|
180
180
|
}, {
|
|
181
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
|
|
182
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
183
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
184
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
185
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
186
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
187
187
|
}>, "strip", z.ZodTypeAny, {
|
|
188
188
|
message: string;
|
|
189
189
|
created_at: string;
|
|
190
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;
|
|
191
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
192
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
193
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
194
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
195
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
196
196
|
}, {
|
|
197
197
|
message: string;
|
|
198
198
|
created_at: string;
|
|
199
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;
|
|
200
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
201
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
202
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
203
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
204
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
205
205
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
206
206
|
message: z.ZodString;
|
|
207
207
|
created_at: z.ZodString;
|
|
@@ -222,11 +222,11 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
222
222
|
message: string;
|
|
223
223
|
created_at: string;
|
|
224
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;
|
|
225
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
226
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
227
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
228
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
229
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
230
230
|
} | {
|
|
231
231
|
message: string;
|
|
232
232
|
created_at: string;
|
|
@@ -247,11 +247,11 @@ export declare const bridge_client_session: z.ZodObject<{
|
|
|
247
247
|
message: string;
|
|
248
248
|
created_at: string;
|
|
249
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;
|
|
250
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
251
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
252
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
253
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
254
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
255
255
|
} | {
|
|
256
256
|
message: string;
|
|
257
257
|
created_at: string;
|
|
@@ -11,18 +11,23 @@ export const bridge_lan_unreachable = common_bridge_client_session_error
|
|
|
11
11
|
.describe(error_code_description),
|
|
12
12
|
is_tailscale_proxy_reachable: z
|
|
13
13
|
.boolean()
|
|
14
|
+
.nullable()
|
|
14
15
|
.describe('Seam cannot reach the tailscale proxy'),
|
|
15
16
|
is_tailscale_proxy_socks_server_healthy: z
|
|
16
17
|
.boolean()
|
|
18
|
+
.nullable()
|
|
17
19
|
.describe("Tailscale proxy's SOCKS server is unhealthy"),
|
|
18
20
|
can_tailscale_proxy_reach_tailscale_network: z
|
|
19
21
|
.boolean()
|
|
22
|
+
.nullable()
|
|
20
23
|
.describe('Tailscale proxy cannot reach the Tailscale network'),
|
|
21
24
|
can_tailscale_proxy_reach_bridge: z
|
|
22
25
|
.boolean()
|
|
26
|
+
.nullable()
|
|
23
27
|
.describe('Tailscale proxy cannot reach the bridge'),
|
|
24
28
|
is_bridge_socks_server_healthy: z
|
|
25
29
|
.boolean()
|
|
30
|
+
.nullable()
|
|
26
31
|
.describe("Bridge's SOCKS server is unhealthy"),
|
|
27
32
|
})
|
|
28
33
|
.describe("Seam cannot reach the bridge's LAN");
|
|
@@ -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,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"}
|
|
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,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IACpD,uCAAuC,EAAE,CAAC;SACvC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gCAAgC,EAAE,CAAC;SAChC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,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"}
|