@seawork/server 1.0.13-rc.2 → 1.0.13-rc.4
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/server/client/daemon-client.d.ts +12 -0
- package/dist/server/client/daemon-client.d.ts.map +1 -1
- package/dist/server/client/daemon-client.js +3 -0
- package/dist/server/client/daemon-client.js.map +1 -1
- package/dist/server/server/agent/agent-management-mcp.d.ts.map +1 -1
- package/dist/server/server/agent/agent-management-mcp.js +2 -1
- package/dist/server/server/agent/agent-management-mcp.js.map +1 -1
- package/dist/server/server/agent/mcp-server.d.ts.map +1 -1
- package/dist/server/server/agent/mcp-server.js +3 -1
- package/dist/server/server/agent/mcp-server.js.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.js +10 -3
- package/dist/server/server/agent/providers/claude-agent.js.map +1 -1
- package/dist/server/server/agent/providers/codex-app-server-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/codex-app-server-agent.js +6 -1
- package/dist/server/server/agent/providers/codex-app-server-agent.js.map +1 -1
- package/dist/server/server/agent/providers/codex-rollout-timeline.d.ts.map +1 -1
- package/dist/server/server/agent/providers/codex-rollout-timeline.js +6 -1
- package/dist/server/server/agent/providers/codex-rollout-timeline.js.map +1 -1
- package/dist/server/server/bug-report-handler.d.ts.map +1 -1
- package/dist/server/server/bug-report-handler.js +11 -4
- package/dist/server/server/bug-report-handler.js.map +1 -1
- package/dist/server/server/bug-report-redact.d.ts +18 -0
- package/dist/server/server/bug-report-redact.d.ts.map +1 -1
- package/dist/server/server/bug-report-redact.js +31 -0
- package/dist/server/server/bug-report-redact.js.map +1 -1
- package/dist/server/server/schedule/service.d.ts.map +1 -1
- package/dist/server/server/schedule/service.js +1 -0
- package/dist/server/server/schedule/service.js.map +1 -1
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +15 -3
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/shared/messages.d.ts +264 -0
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +15 -0
- package/dist/server/shared/messages.js.map +1 -1
- package/package.json +3 -3
|
@@ -674,6 +674,36 @@ export declare const SubmitBugReportRequestMessageSchema: z.ZodObject<{
|
|
|
674
674
|
msg: string;
|
|
675
675
|
}>, "many">>;
|
|
676
676
|
attachmentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
677
|
+
networkEnv: z.ZodOptional<z.ZodEnum<["company-intranet", "vpn", "public", "unknown"]>>;
|
|
678
|
+
canReachPublicInternet: z.ZodOptional<z.ZodEnum<["yes", "no", "unknown"]>>;
|
|
679
|
+
desktopInstallAttempts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
680
|
+
ts: z.ZodNumber;
|
|
681
|
+
agent: z.ZodString;
|
|
682
|
+
cmd: z.ZodString;
|
|
683
|
+
args: z.ZodArray<z.ZodString, "many">;
|
|
684
|
+
code: z.ZodNullable<z.ZodNumber>;
|
|
685
|
+
reason: z.ZodString;
|
|
686
|
+
stderrTail: z.ZodString;
|
|
687
|
+
spawnError: z.ZodOptional<z.ZodString>;
|
|
688
|
+
}, "strip", z.ZodTypeAny, {
|
|
689
|
+
code: number | null;
|
|
690
|
+
agent: string;
|
|
691
|
+
reason: string;
|
|
692
|
+
args: string[];
|
|
693
|
+
ts: number;
|
|
694
|
+
cmd: string;
|
|
695
|
+
stderrTail: string;
|
|
696
|
+
spawnError?: string | undefined;
|
|
697
|
+
}, {
|
|
698
|
+
code: number | null;
|
|
699
|
+
agent: string;
|
|
700
|
+
reason: string;
|
|
701
|
+
args: string[];
|
|
702
|
+
ts: number;
|
|
703
|
+
cmd: string;
|
|
704
|
+
stderrTail: string;
|
|
705
|
+
spawnError?: string | undefined;
|
|
706
|
+
}>, "many">>;
|
|
677
707
|
}, "strip", z.ZodTypeAny, {
|
|
678
708
|
type: "submit_bug_report_request";
|
|
679
709
|
requestId: string;
|
|
@@ -689,6 +719,18 @@ export declare const SubmitBugReportRequestMessageSchema: z.ZodObject<{
|
|
|
689
719
|
msg: string;
|
|
690
720
|
}[] | undefined;
|
|
691
721
|
attachmentIds?: string[] | undefined;
|
|
722
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
723
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
724
|
+
desktopInstallAttempts?: {
|
|
725
|
+
code: number | null;
|
|
726
|
+
agent: string;
|
|
727
|
+
reason: string;
|
|
728
|
+
args: string[];
|
|
729
|
+
ts: number;
|
|
730
|
+
cmd: string;
|
|
731
|
+
stderrTail: string;
|
|
732
|
+
spawnError?: string | undefined;
|
|
733
|
+
}[] | undefined;
|
|
692
734
|
}, {
|
|
693
735
|
type: "submit_bug_report_request";
|
|
694
736
|
requestId: string;
|
|
@@ -704,6 +746,18 @@ export declare const SubmitBugReportRequestMessageSchema: z.ZodObject<{
|
|
|
704
746
|
msg: string;
|
|
705
747
|
}[] | undefined;
|
|
706
748
|
attachmentIds?: string[] | undefined;
|
|
749
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
750
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
751
|
+
desktopInstallAttempts?: {
|
|
752
|
+
code: number | null;
|
|
753
|
+
agent: string;
|
|
754
|
+
reason: string;
|
|
755
|
+
args: string[];
|
|
756
|
+
ts: number;
|
|
757
|
+
cmd: string;
|
|
758
|
+
stderrTail: string;
|
|
759
|
+
spawnError?: string | undefined;
|
|
760
|
+
}[] | undefined;
|
|
707
761
|
}>;
|
|
708
762
|
export declare const SubmitBugReportResponseMessageSchema: z.ZodObject<{
|
|
709
763
|
type: z.ZodLiteral<"submit_bug_report_response">;
|
|
@@ -5572,6 +5626,36 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
5572
5626
|
msg: string;
|
|
5573
5627
|
}>, "many">>;
|
|
5574
5628
|
attachmentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5629
|
+
networkEnv: z.ZodOptional<z.ZodEnum<["company-intranet", "vpn", "public", "unknown"]>>;
|
|
5630
|
+
canReachPublicInternet: z.ZodOptional<z.ZodEnum<["yes", "no", "unknown"]>>;
|
|
5631
|
+
desktopInstallAttempts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5632
|
+
ts: z.ZodNumber;
|
|
5633
|
+
agent: z.ZodString;
|
|
5634
|
+
cmd: z.ZodString;
|
|
5635
|
+
args: z.ZodArray<z.ZodString, "many">;
|
|
5636
|
+
code: z.ZodNullable<z.ZodNumber>;
|
|
5637
|
+
reason: z.ZodString;
|
|
5638
|
+
stderrTail: z.ZodString;
|
|
5639
|
+
spawnError: z.ZodOptional<z.ZodString>;
|
|
5640
|
+
}, "strip", z.ZodTypeAny, {
|
|
5641
|
+
code: number | null;
|
|
5642
|
+
agent: string;
|
|
5643
|
+
reason: string;
|
|
5644
|
+
args: string[];
|
|
5645
|
+
ts: number;
|
|
5646
|
+
cmd: string;
|
|
5647
|
+
stderrTail: string;
|
|
5648
|
+
spawnError?: string | undefined;
|
|
5649
|
+
}, {
|
|
5650
|
+
code: number | null;
|
|
5651
|
+
agent: string;
|
|
5652
|
+
reason: string;
|
|
5653
|
+
args: string[];
|
|
5654
|
+
ts: number;
|
|
5655
|
+
cmd: string;
|
|
5656
|
+
stderrTail: string;
|
|
5657
|
+
spawnError?: string | undefined;
|
|
5658
|
+
}>, "many">>;
|
|
5575
5659
|
}, "strip", z.ZodTypeAny, {
|
|
5576
5660
|
type: "submit_bug_report_request";
|
|
5577
5661
|
requestId: string;
|
|
@@ -5587,6 +5671,18 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
5587
5671
|
msg: string;
|
|
5588
5672
|
}[] | undefined;
|
|
5589
5673
|
attachmentIds?: string[] | undefined;
|
|
5674
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
5675
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
5676
|
+
desktopInstallAttempts?: {
|
|
5677
|
+
code: number | null;
|
|
5678
|
+
agent: string;
|
|
5679
|
+
reason: string;
|
|
5680
|
+
args: string[];
|
|
5681
|
+
ts: number;
|
|
5682
|
+
cmd: string;
|
|
5683
|
+
stderrTail: string;
|
|
5684
|
+
spawnError?: string | undefined;
|
|
5685
|
+
}[] | undefined;
|
|
5590
5686
|
}, {
|
|
5591
5687
|
type: "submit_bug_report_request";
|
|
5592
5688
|
requestId: string;
|
|
@@ -5602,6 +5698,18 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
5602
5698
|
msg: string;
|
|
5603
5699
|
}[] | undefined;
|
|
5604
5700
|
attachmentIds?: string[] | undefined;
|
|
5701
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
5702
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
5703
|
+
desktopInstallAttempts?: {
|
|
5704
|
+
code: number | null;
|
|
5705
|
+
agent: string;
|
|
5706
|
+
reason: string;
|
|
5707
|
+
args: string[];
|
|
5708
|
+
ts: number;
|
|
5709
|
+
cmd: string;
|
|
5710
|
+
stderrTail: string;
|
|
5711
|
+
spawnError?: string | undefined;
|
|
5712
|
+
}[] | undefined;
|
|
5605
5713
|
}>]>;
|
|
5606
5714
|
export type SessionInboundMessage = z.infer<typeof SessionInboundMessageSchema>;
|
|
5607
5715
|
export declare const ActivityLogPayloadSchema: z.ZodObject<{
|
|
@@ -37612,6 +37720,36 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
37612
37720
|
msg: string;
|
|
37613
37721
|
}>, "many">>;
|
|
37614
37722
|
attachmentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
37723
|
+
networkEnv: z.ZodOptional<z.ZodEnum<["company-intranet", "vpn", "public", "unknown"]>>;
|
|
37724
|
+
canReachPublicInternet: z.ZodOptional<z.ZodEnum<["yes", "no", "unknown"]>>;
|
|
37725
|
+
desktopInstallAttempts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37726
|
+
ts: z.ZodNumber;
|
|
37727
|
+
agent: z.ZodString;
|
|
37728
|
+
cmd: z.ZodString;
|
|
37729
|
+
args: z.ZodArray<z.ZodString, "many">;
|
|
37730
|
+
code: z.ZodNullable<z.ZodNumber>;
|
|
37731
|
+
reason: z.ZodString;
|
|
37732
|
+
stderrTail: z.ZodString;
|
|
37733
|
+
spawnError: z.ZodOptional<z.ZodString>;
|
|
37734
|
+
}, "strip", z.ZodTypeAny, {
|
|
37735
|
+
code: number | null;
|
|
37736
|
+
agent: string;
|
|
37737
|
+
reason: string;
|
|
37738
|
+
args: string[];
|
|
37739
|
+
ts: number;
|
|
37740
|
+
cmd: string;
|
|
37741
|
+
stderrTail: string;
|
|
37742
|
+
spawnError?: string | undefined;
|
|
37743
|
+
}, {
|
|
37744
|
+
code: number | null;
|
|
37745
|
+
agent: string;
|
|
37746
|
+
reason: string;
|
|
37747
|
+
args: string[];
|
|
37748
|
+
ts: number;
|
|
37749
|
+
cmd: string;
|
|
37750
|
+
stderrTail: string;
|
|
37751
|
+
spawnError?: string | undefined;
|
|
37752
|
+
}>, "many">>;
|
|
37615
37753
|
}, "strip", z.ZodTypeAny, {
|
|
37616
37754
|
type: "submit_bug_report_request";
|
|
37617
37755
|
requestId: string;
|
|
@@ -37627,6 +37765,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
37627
37765
|
msg: string;
|
|
37628
37766
|
}[] | undefined;
|
|
37629
37767
|
attachmentIds?: string[] | undefined;
|
|
37768
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
37769
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
37770
|
+
desktopInstallAttempts?: {
|
|
37771
|
+
code: number | null;
|
|
37772
|
+
agent: string;
|
|
37773
|
+
reason: string;
|
|
37774
|
+
args: string[];
|
|
37775
|
+
ts: number;
|
|
37776
|
+
cmd: string;
|
|
37777
|
+
stderrTail: string;
|
|
37778
|
+
spawnError?: string | undefined;
|
|
37779
|
+
}[] | undefined;
|
|
37630
37780
|
}, {
|
|
37631
37781
|
type: "submit_bug_report_request";
|
|
37632
37782
|
requestId: string;
|
|
@@ -37642,6 +37792,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
37642
37792
|
msg: string;
|
|
37643
37793
|
}[] | undefined;
|
|
37644
37794
|
attachmentIds?: string[] | undefined;
|
|
37795
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
37796
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
37797
|
+
desktopInstallAttempts?: {
|
|
37798
|
+
code: number | null;
|
|
37799
|
+
agent: string;
|
|
37800
|
+
reason: string;
|
|
37801
|
+
args: string[];
|
|
37802
|
+
ts: number;
|
|
37803
|
+
cmd: string;
|
|
37804
|
+
stderrTail: string;
|
|
37805
|
+
spawnError?: string | undefined;
|
|
37806
|
+
}[] | undefined;
|
|
37645
37807
|
}>]>;
|
|
37646
37808
|
}, "strip", z.ZodTypeAny, {
|
|
37647
37809
|
message: {
|
|
@@ -38328,6 +38490,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
38328
38490
|
msg: string;
|
|
38329
38491
|
}[] | undefined;
|
|
38330
38492
|
attachmentIds?: string[] | undefined;
|
|
38493
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
38494
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
38495
|
+
desktopInstallAttempts?: {
|
|
38496
|
+
code: number | null;
|
|
38497
|
+
agent: string;
|
|
38498
|
+
reason: string;
|
|
38499
|
+
args: string[];
|
|
38500
|
+
ts: number;
|
|
38501
|
+
cmd: string;
|
|
38502
|
+
stderrTail: string;
|
|
38503
|
+
spawnError?: string | undefined;
|
|
38504
|
+
}[] | undefined;
|
|
38331
38505
|
};
|
|
38332
38506
|
type: "session";
|
|
38333
38507
|
}, {
|
|
@@ -39015,6 +39189,18 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
39015
39189
|
msg: string;
|
|
39016
39190
|
}[] | undefined;
|
|
39017
39191
|
attachmentIds?: string[] | undefined;
|
|
39192
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
39193
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
39194
|
+
desktopInstallAttempts?: {
|
|
39195
|
+
code: number | null;
|
|
39196
|
+
agent: string;
|
|
39197
|
+
reason: string;
|
|
39198
|
+
args: string[];
|
|
39199
|
+
ts: number;
|
|
39200
|
+
cmd: string;
|
|
39201
|
+
stderrTail: string;
|
|
39202
|
+
spawnError?: string | undefined;
|
|
39203
|
+
}[] | undefined;
|
|
39018
39204
|
};
|
|
39019
39205
|
type: "session";
|
|
39020
39206
|
}>;
|
|
@@ -61755,6 +61941,36 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
61755
61941
|
msg: string;
|
|
61756
61942
|
}>, "many">>;
|
|
61757
61943
|
attachmentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
61944
|
+
networkEnv: z.ZodOptional<z.ZodEnum<["company-intranet", "vpn", "public", "unknown"]>>;
|
|
61945
|
+
canReachPublicInternet: z.ZodOptional<z.ZodEnum<["yes", "no", "unknown"]>>;
|
|
61946
|
+
desktopInstallAttempts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
61947
|
+
ts: z.ZodNumber;
|
|
61948
|
+
agent: z.ZodString;
|
|
61949
|
+
cmd: z.ZodString;
|
|
61950
|
+
args: z.ZodArray<z.ZodString, "many">;
|
|
61951
|
+
code: z.ZodNullable<z.ZodNumber>;
|
|
61952
|
+
reason: z.ZodString;
|
|
61953
|
+
stderrTail: z.ZodString;
|
|
61954
|
+
spawnError: z.ZodOptional<z.ZodString>;
|
|
61955
|
+
}, "strip", z.ZodTypeAny, {
|
|
61956
|
+
code: number | null;
|
|
61957
|
+
agent: string;
|
|
61958
|
+
reason: string;
|
|
61959
|
+
args: string[];
|
|
61960
|
+
ts: number;
|
|
61961
|
+
cmd: string;
|
|
61962
|
+
stderrTail: string;
|
|
61963
|
+
spawnError?: string | undefined;
|
|
61964
|
+
}, {
|
|
61965
|
+
code: number | null;
|
|
61966
|
+
agent: string;
|
|
61967
|
+
reason: string;
|
|
61968
|
+
args: string[];
|
|
61969
|
+
ts: number;
|
|
61970
|
+
cmd: string;
|
|
61971
|
+
stderrTail: string;
|
|
61972
|
+
spawnError?: string | undefined;
|
|
61973
|
+
}>, "many">>;
|
|
61758
61974
|
}, "strip", z.ZodTypeAny, {
|
|
61759
61975
|
type: "submit_bug_report_request";
|
|
61760
61976
|
requestId: string;
|
|
@@ -61770,6 +61986,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
61770
61986
|
msg: string;
|
|
61771
61987
|
}[] | undefined;
|
|
61772
61988
|
attachmentIds?: string[] | undefined;
|
|
61989
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
61990
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
61991
|
+
desktopInstallAttempts?: {
|
|
61992
|
+
code: number | null;
|
|
61993
|
+
agent: string;
|
|
61994
|
+
reason: string;
|
|
61995
|
+
args: string[];
|
|
61996
|
+
ts: number;
|
|
61997
|
+
cmd: string;
|
|
61998
|
+
stderrTail: string;
|
|
61999
|
+
spawnError?: string | undefined;
|
|
62000
|
+
}[] | undefined;
|
|
61773
62001
|
}, {
|
|
61774
62002
|
type: "submit_bug_report_request";
|
|
61775
62003
|
requestId: string;
|
|
@@ -61785,6 +62013,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
61785
62013
|
msg: string;
|
|
61786
62014
|
}[] | undefined;
|
|
61787
62015
|
attachmentIds?: string[] | undefined;
|
|
62016
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
62017
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
62018
|
+
desktopInstallAttempts?: {
|
|
62019
|
+
code: number | null;
|
|
62020
|
+
agent: string;
|
|
62021
|
+
reason: string;
|
|
62022
|
+
args: string[];
|
|
62023
|
+
ts: number;
|
|
62024
|
+
cmd: string;
|
|
62025
|
+
stderrTail: string;
|
|
62026
|
+
spawnError?: string | undefined;
|
|
62027
|
+
}[] | undefined;
|
|
61788
62028
|
}>]>;
|
|
61789
62029
|
}, "strip", z.ZodTypeAny, {
|
|
61790
62030
|
message: {
|
|
@@ -62471,6 +62711,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
62471
62711
|
msg: string;
|
|
62472
62712
|
}[] | undefined;
|
|
62473
62713
|
attachmentIds?: string[] | undefined;
|
|
62714
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
62715
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
62716
|
+
desktopInstallAttempts?: {
|
|
62717
|
+
code: number | null;
|
|
62718
|
+
agent: string;
|
|
62719
|
+
reason: string;
|
|
62720
|
+
args: string[];
|
|
62721
|
+
ts: number;
|
|
62722
|
+
cmd: string;
|
|
62723
|
+
stderrTail: string;
|
|
62724
|
+
spawnError?: string | undefined;
|
|
62725
|
+
}[] | undefined;
|
|
62474
62726
|
};
|
|
62475
62727
|
type: "session";
|
|
62476
62728
|
}, {
|
|
@@ -63158,6 +63410,18 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63158
63410
|
msg: string;
|
|
63159
63411
|
}[] | undefined;
|
|
63160
63412
|
attachmentIds?: string[] | undefined;
|
|
63413
|
+
networkEnv?: "unknown" | "company-intranet" | "vpn" | "public" | undefined;
|
|
63414
|
+
canReachPublicInternet?: "unknown" | "yes" | "no" | undefined;
|
|
63415
|
+
desktopInstallAttempts?: {
|
|
63416
|
+
code: number | null;
|
|
63417
|
+
agent: string;
|
|
63418
|
+
reason: string;
|
|
63419
|
+
args: string[];
|
|
63420
|
+
ts: number;
|
|
63421
|
+
cmd: string;
|
|
63422
|
+
stderrTail: string;
|
|
63423
|
+
spawnError?: string | undefined;
|
|
63424
|
+
}[] | undefined;
|
|
63161
63425
|
};
|
|
63162
63426
|
type: "session";
|
|
63163
63427
|
}>]>;
|