@synsci/sdk 2.0.24 → 2.0.25
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.
|
@@ -2326,6 +2326,7 @@ export declare class OpenScienceClient extends HeyApiClient {
|
|
|
2326
2326
|
network?: "allow" | "deny";
|
|
2327
2327
|
allowWrite?: Array<string>;
|
|
2328
2328
|
onUnavailable?: "warn" | "error" | "allow";
|
|
2329
|
+
requireProjectTrust?: boolean;
|
|
2329
2330
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<PutSettingsSandboxResponses, unknown, ThrowOnError, "fields">;
|
|
2330
2331
|
private _global?;
|
|
2331
2332
|
get global(): Global;
|
|
@@ -4724,6 +4724,7 @@ export class OpenScienceClient extends HeyApiClient {
|
|
|
4724
4724
|
{ in: "body", key: "network" },
|
|
4725
4725
|
{ in: "body", key: "allowWrite" },
|
|
4726
4726
|
{ in: "body", key: "onUnavailable" },
|
|
4727
|
+
{ in: "body", key: "requireProjectTrust" },
|
|
4727
4728
|
],
|
|
4728
4729
|
},
|
|
4729
4730
|
]);
|
|
@@ -794,6 +794,7 @@ export type Pty = {
|
|
|
794
794
|
authority: {
|
|
795
795
|
allowed: boolean;
|
|
796
796
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
797
|
+
message?: string;
|
|
797
798
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
798
799
|
mode: "read_only" | "sandboxed" | "host";
|
|
799
800
|
projectID: string;
|
|
@@ -810,6 +811,7 @@ export type Pty = {
|
|
|
810
811
|
network: "allow" | "deny";
|
|
811
812
|
allowWrite: Array<string>;
|
|
812
813
|
onUnavailable: "warn" | "error" | "allow";
|
|
814
|
+
requireProjectTrust?: boolean;
|
|
813
815
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
814
816
|
available: boolean;
|
|
815
817
|
enforced: boolean;
|
|
@@ -1555,6 +1557,10 @@ export type SandboxConfig = {
|
|
|
1555
1557
|
* Behaviour when no sandbox backend exists on this platform: 'error' (default) refuses to run, 'warn' runs unsandboxed with a notice, and 'allow' runs unsandboxed silently.
|
|
1556
1558
|
*/
|
|
1557
1559
|
onUnavailable?: "warn" | "error" | "allow";
|
|
1560
|
+
/**
|
|
1561
|
+
* Require explicit project trust before any execution, even when a verified OS sandbox is available. Default: false.
|
|
1562
|
+
*/
|
|
1563
|
+
requireProjectTrust?: boolean;
|
|
1558
1564
|
};
|
|
1559
1565
|
export type Config = {
|
|
1560
1566
|
/**
|
|
@@ -3768,6 +3774,7 @@ export type SettingsComputeJobsListResponses = {
|
|
|
3768
3774
|
authority?: {
|
|
3769
3775
|
allowed: boolean;
|
|
3770
3776
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
3777
|
+
message?: string;
|
|
3771
3778
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
3772
3779
|
mode: "read_only" | "sandboxed" | "host";
|
|
3773
3780
|
projectID: string;
|
|
@@ -3784,6 +3791,7 @@ export type SettingsComputeJobsListResponses = {
|
|
|
3784
3791
|
network: "allow" | "deny";
|
|
3785
3792
|
allowWrite: Array<string>;
|
|
3786
3793
|
onUnavailable: "warn" | "error" | "allow";
|
|
3794
|
+
requireProjectTrust?: boolean;
|
|
3787
3795
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
3788
3796
|
available: boolean;
|
|
3789
3797
|
enforced: boolean;
|
|
@@ -4247,6 +4255,7 @@ export type SettingsComputeJobsStartResponses = {
|
|
|
4247
4255
|
authority?: {
|
|
4248
4256
|
allowed: boolean;
|
|
4249
4257
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
4258
|
+
message?: string;
|
|
4250
4259
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
4251
4260
|
mode: "read_only" | "sandboxed" | "host";
|
|
4252
4261
|
projectID: string;
|
|
@@ -4263,6 +4272,7 @@ export type SettingsComputeJobsStartResponses = {
|
|
|
4263
4272
|
network: "allow" | "deny";
|
|
4264
4273
|
allowWrite: Array<string>;
|
|
4265
4274
|
onUnavailable: "warn" | "error" | "allow";
|
|
4275
|
+
requireProjectTrust?: boolean;
|
|
4266
4276
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
4267
4277
|
available: boolean;
|
|
4268
4278
|
enforced: boolean;
|
|
@@ -4901,6 +4911,7 @@ export type SettingsComputeJobsRetryResponses = {
|
|
|
4901
4911
|
authority?: {
|
|
4902
4912
|
allowed: boolean;
|
|
4903
4913
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
4914
|
+
message?: string;
|
|
4904
4915
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
4905
4916
|
mode: "read_only" | "sandboxed" | "host";
|
|
4906
4917
|
projectID: string;
|
|
@@ -4917,6 +4928,7 @@ export type SettingsComputeJobsRetryResponses = {
|
|
|
4917
4928
|
network: "allow" | "deny";
|
|
4918
4929
|
allowWrite: Array<string>;
|
|
4919
4930
|
onUnavailable: "warn" | "error" | "allow";
|
|
4931
|
+
requireProjectTrust?: boolean;
|
|
4920
4932
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
4921
4933
|
available: boolean;
|
|
4922
4934
|
enforced: boolean;
|
|
@@ -5353,6 +5365,7 @@ export type SettingsComputeJobsReleaseResponses = {
|
|
|
5353
5365
|
authority?: {
|
|
5354
5366
|
allowed: boolean;
|
|
5355
5367
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
5368
|
+
message?: string;
|
|
5356
5369
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
5357
5370
|
mode: "read_only" | "sandboxed" | "host";
|
|
5358
5371
|
projectID: string;
|
|
@@ -5369,6 +5382,7 @@ export type SettingsComputeJobsReleaseResponses = {
|
|
|
5369
5382
|
network: "allow" | "deny";
|
|
5370
5383
|
allowWrite: Array<string>;
|
|
5371
5384
|
onUnavailable: "warn" | "error" | "allow";
|
|
5385
|
+
requireProjectTrust?: boolean;
|
|
5372
5386
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
5373
5387
|
available: boolean;
|
|
5374
5388
|
enforced: boolean;
|
|
@@ -5801,6 +5815,7 @@ export type SettingsComputeJobsCancelResponses = {
|
|
|
5801
5815
|
authority?: {
|
|
5802
5816
|
allowed: boolean;
|
|
5803
5817
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
5818
|
+
message?: string;
|
|
5804
5819
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
5805
5820
|
mode: "read_only" | "sandboxed" | "host";
|
|
5806
5821
|
projectID: string;
|
|
@@ -5817,6 +5832,7 @@ export type SettingsComputeJobsCancelResponses = {
|
|
|
5817
5832
|
network: "allow" | "deny";
|
|
5818
5833
|
allowWrite: Array<string>;
|
|
5819
5834
|
onUnavailable: "warn" | "error" | "allow";
|
|
5835
|
+
requireProjectTrust?: boolean;
|
|
5820
5836
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
5821
5837
|
available: boolean;
|
|
5822
5838
|
enforced: boolean;
|
|
@@ -6042,6 +6058,7 @@ export type PutSettingsSandboxData = {
|
|
|
6042
6058
|
network?: "allow" | "deny";
|
|
6043
6059
|
allowWrite?: Array<string>;
|
|
6044
6060
|
onUnavailable?: "warn" | "error" | "allow";
|
|
6061
|
+
requireProjectTrust?: boolean;
|
|
6045
6062
|
};
|
|
6046
6063
|
path?: never;
|
|
6047
6064
|
query?: never;
|
|
@@ -6358,6 +6375,7 @@ export type ProjectExecutionResponses = {
|
|
|
6358
6375
|
200: {
|
|
6359
6376
|
allowed: boolean;
|
|
6360
6377
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
6378
|
+
message?: string;
|
|
6361
6379
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
6362
6380
|
mode: "read_only" | "sandboxed" | "host";
|
|
6363
6381
|
projectID: string;
|
|
@@ -6374,6 +6392,7 @@ export type ProjectExecutionResponses = {
|
|
|
6374
6392
|
network: "allow" | "deny";
|
|
6375
6393
|
allowWrite: Array<string>;
|
|
6376
6394
|
onUnavailable: "warn" | "error" | "allow";
|
|
6395
|
+
requireProjectTrust?: boolean;
|
|
6377
6396
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
6378
6397
|
available: boolean;
|
|
6379
6398
|
enforced: boolean;
|
|
@@ -10098,6 +10117,7 @@ export type KernelsListResponses = {
|
|
|
10098
10117
|
authority: {
|
|
10099
10118
|
allowed: boolean;
|
|
10100
10119
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10120
|
+
message?: string;
|
|
10101
10121
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10102
10122
|
mode: "read_only" | "sandboxed" | "host";
|
|
10103
10123
|
projectID: string;
|
|
@@ -10114,6 +10134,7 @@ export type KernelsListResponses = {
|
|
|
10114
10134
|
network: "allow" | "deny";
|
|
10115
10135
|
allowWrite: Array<string>;
|
|
10116
10136
|
onUnavailable: "warn" | "error" | "allow";
|
|
10137
|
+
requireProjectTrust?: boolean;
|
|
10117
10138
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10118
10139
|
available: boolean;
|
|
10119
10140
|
enforced: boolean;
|
|
@@ -10211,6 +10232,7 @@ export type KernelsRestartByIdResponses = {
|
|
|
10211
10232
|
authority: {
|
|
10212
10233
|
allowed: boolean;
|
|
10213
10234
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10235
|
+
message?: string;
|
|
10214
10236
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10215
10237
|
mode: "read_only" | "sandboxed" | "host";
|
|
10216
10238
|
projectID: string;
|
|
@@ -10227,6 +10249,7 @@ export type KernelsRestartByIdResponses = {
|
|
|
10227
10249
|
network: "allow" | "deny";
|
|
10228
10250
|
allowWrite: Array<string>;
|
|
10229
10251
|
onUnavailable: "warn" | "error" | "allow";
|
|
10252
|
+
requireProjectTrust?: boolean;
|
|
10230
10253
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10231
10254
|
available: boolean;
|
|
10232
10255
|
enforced: boolean;
|
|
@@ -10323,6 +10346,7 @@ export type KernelsStopByIdResponses = {
|
|
|
10323
10346
|
authority: {
|
|
10324
10347
|
allowed: boolean;
|
|
10325
10348
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10349
|
+
message?: string;
|
|
10326
10350
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10327
10351
|
mode: "read_only" | "sandboxed" | "host";
|
|
10328
10352
|
projectID: string;
|
|
@@ -10339,6 +10363,7 @@ export type KernelsStopByIdResponses = {
|
|
|
10339
10363
|
network: "allow" | "deny";
|
|
10340
10364
|
allowWrite: Array<string>;
|
|
10341
10365
|
onUnavailable: "warn" | "error" | "allow";
|
|
10366
|
+
requireProjectTrust?: boolean;
|
|
10342
10367
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10343
10368
|
available: boolean;
|
|
10344
10369
|
enforced: boolean;
|
|
@@ -10435,6 +10460,7 @@ export type KernelsInterruptByIdResponses = {
|
|
|
10435
10460
|
authority: {
|
|
10436
10461
|
allowed: boolean;
|
|
10437
10462
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10463
|
+
message?: string;
|
|
10438
10464
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10439
10465
|
mode: "read_only" | "sandboxed" | "host";
|
|
10440
10466
|
projectID: string;
|
|
@@ -10451,6 +10477,7 @@ export type KernelsInterruptByIdResponses = {
|
|
|
10451
10477
|
network: "allow" | "deny";
|
|
10452
10478
|
allowWrite: Array<string>;
|
|
10453
10479
|
onUnavailable: "warn" | "error" | "allow";
|
|
10480
|
+
requireProjectTrust?: boolean;
|
|
10454
10481
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10455
10482
|
available: boolean;
|
|
10456
10483
|
enforced: boolean;
|
|
@@ -10586,6 +10613,7 @@ export type KernelsStatusResponses = {
|
|
|
10586
10613
|
authority: {
|
|
10587
10614
|
allowed: boolean;
|
|
10588
10615
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10616
|
+
message?: string;
|
|
10589
10617
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10590
10618
|
mode: "read_only" | "sandboxed" | "host";
|
|
10591
10619
|
projectID: string;
|
|
@@ -10602,6 +10630,7 @@ export type KernelsStatusResponses = {
|
|
|
10602
10630
|
network: "allow" | "deny";
|
|
10603
10631
|
allowWrite: Array<string>;
|
|
10604
10632
|
onUnavailable: "warn" | "error" | "allow";
|
|
10633
|
+
requireProjectTrust?: boolean;
|
|
10605
10634
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10606
10635
|
available: boolean;
|
|
10607
10636
|
enforced: boolean;
|
|
@@ -10698,6 +10727,7 @@ export type KernelsRestartResponses = {
|
|
|
10698
10727
|
authority: {
|
|
10699
10728
|
allowed: boolean;
|
|
10700
10729
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10730
|
+
message?: string;
|
|
10701
10731
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10702
10732
|
mode: "read_only" | "sandboxed" | "host";
|
|
10703
10733
|
projectID: string;
|
|
@@ -10714,6 +10744,7 @@ export type KernelsRestartResponses = {
|
|
|
10714
10744
|
network: "allow" | "deny";
|
|
10715
10745
|
allowWrite: Array<string>;
|
|
10716
10746
|
onUnavailable: "warn" | "error" | "allow";
|
|
10747
|
+
requireProjectTrust?: boolean;
|
|
10717
10748
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10718
10749
|
available: boolean;
|
|
10719
10750
|
enforced: boolean;
|
|
@@ -10810,6 +10841,7 @@ export type KernelsStopResponses = {
|
|
|
10810
10841
|
authority: {
|
|
10811
10842
|
allowed: boolean;
|
|
10812
10843
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10844
|
+
message?: string;
|
|
10813
10845
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10814
10846
|
mode: "read_only" | "sandboxed" | "host";
|
|
10815
10847
|
projectID: string;
|
|
@@ -10826,6 +10858,7 @@ export type KernelsStopResponses = {
|
|
|
10826
10858
|
network: "allow" | "deny";
|
|
10827
10859
|
allowWrite: Array<string>;
|
|
10828
10860
|
onUnavailable: "warn" | "error" | "allow";
|
|
10861
|
+
requireProjectTrust?: boolean;
|
|
10829
10862
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10830
10863
|
available: boolean;
|
|
10831
10864
|
enforced: boolean;
|
|
@@ -10922,6 +10955,7 @@ export type KernelsInterruptResponses = {
|
|
|
10922
10955
|
authority: {
|
|
10923
10956
|
allowed: boolean;
|
|
10924
10957
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
10958
|
+
message?: string;
|
|
10925
10959
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
10926
10960
|
mode: "read_only" | "sandboxed" | "host";
|
|
10927
10961
|
projectID: string;
|
|
@@ -10938,6 +10972,7 @@ export type KernelsInterruptResponses = {
|
|
|
10938
10972
|
network: "allow" | "deny";
|
|
10939
10973
|
allowWrite: Array<string>;
|
|
10940
10974
|
onUnavailable: "warn" | "error" | "allow";
|
|
10975
|
+
requireProjectTrust?: boolean;
|
|
10941
10976
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
10942
10977
|
available: boolean;
|
|
10943
10978
|
enforced: boolean;
|
|
@@ -11104,6 +11139,7 @@ export type NotebookKernelsResponses = {
|
|
|
11104
11139
|
authority: {
|
|
11105
11140
|
allowed: boolean;
|
|
11106
11141
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11142
|
+
message?: string;
|
|
11107
11143
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11108
11144
|
mode: "read_only" | "sandboxed" | "host";
|
|
11109
11145
|
projectID: string;
|
|
@@ -11120,6 +11156,7 @@ export type NotebookKernelsResponses = {
|
|
|
11120
11156
|
network: "allow" | "deny";
|
|
11121
11157
|
allowWrite: Array<string>;
|
|
11122
11158
|
onUnavailable: "warn" | "error" | "allow";
|
|
11159
|
+
requireProjectTrust?: boolean;
|
|
11123
11160
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11124
11161
|
available: boolean;
|
|
11125
11162
|
enforced: boolean;
|
|
@@ -11217,6 +11254,7 @@ export type NotebookKernelRestartResponses = {
|
|
|
11217
11254
|
authority: {
|
|
11218
11255
|
allowed: boolean;
|
|
11219
11256
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11257
|
+
message?: string;
|
|
11220
11258
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11221
11259
|
mode: "read_only" | "sandboxed" | "host";
|
|
11222
11260
|
projectID: string;
|
|
@@ -11233,6 +11271,7 @@ export type NotebookKernelRestartResponses = {
|
|
|
11233
11271
|
network: "allow" | "deny";
|
|
11234
11272
|
allowWrite: Array<string>;
|
|
11235
11273
|
onUnavailable: "warn" | "error" | "allow";
|
|
11274
|
+
requireProjectTrust?: boolean;
|
|
11236
11275
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11237
11276
|
available: boolean;
|
|
11238
11277
|
enforced: boolean;
|
|
@@ -11329,6 +11368,7 @@ export type NotebookKernelStopResponses = {
|
|
|
11329
11368
|
authority: {
|
|
11330
11369
|
allowed: boolean;
|
|
11331
11370
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11371
|
+
message?: string;
|
|
11332
11372
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11333
11373
|
mode: "read_only" | "sandboxed" | "host";
|
|
11334
11374
|
projectID: string;
|
|
@@ -11345,6 +11385,7 @@ export type NotebookKernelStopResponses = {
|
|
|
11345
11385
|
network: "allow" | "deny";
|
|
11346
11386
|
allowWrite: Array<string>;
|
|
11347
11387
|
onUnavailable: "warn" | "error" | "allow";
|
|
11388
|
+
requireProjectTrust?: boolean;
|
|
11348
11389
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11349
11390
|
available: boolean;
|
|
11350
11391
|
enforced: boolean;
|
|
@@ -11441,6 +11482,7 @@ export type NotebookKernelInterruptResponses = {
|
|
|
11441
11482
|
authority: {
|
|
11442
11483
|
allowed: boolean;
|
|
11443
11484
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11485
|
+
message?: string;
|
|
11444
11486
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11445
11487
|
mode: "read_only" | "sandboxed" | "host";
|
|
11446
11488
|
projectID: string;
|
|
@@ -11457,6 +11499,7 @@ export type NotebookKernelInterruptResponses = {
|
|
|
11457
11499
|
network: "allow" | "deny";
|
|
11458
11500
|
allowWrite: Array<string>;
|
|
11459
11501
|
onUnavailable: "warn" | "error" | "allow";
|
|
11502
|
+
requireProjectTrust?: boolean;
|
|
11460
11503
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11461
11504
|
available: boolean;
|
|
11462
11505
|
enforced: boolean;
|
|
@@ -11593,6 +11636,7 @@ export type NotebookStatusResponses = {
|
|
|
11593
11636
|
authority: {
|
|
11594
11637
|
allowed: boolean;
|
|
11595
11638
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11639
|
+
message?: string;
|
|
11596
11640
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11597
11641
|
mode: "read_only" | "sandboxed" | "host";
|
|
11598
11642
|
projectID: string;
|
|
@@ -11609,6 +11653,7 @@ export type NotebookStatusResponses = {
|
|
|
11609
11653
|
network: "allow" | "deny";
|
|
11610
11654
|
allowWrite: Array<string>;
|
|
11611
11655
|
onUnavailable: "warn" | "error" | "allow";
|
|
11656
|
+
requireProjectTrust?: boolean;
|
|
11612
11657
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11613
11658
|
available: boolean;
|
|
11614
11659
|
enforced: boolean;
|
|
@@ -11706,6 +11751,7 @@ export type NotebookRestartResponses = {
|
|
|
11706
11751
|
authority: {
|
|
11707
11752
|
allowed: boolean;
|
|
11708
11753
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11754
|
+
message?: string;
|
|
11709
11755
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11710
11756
|
mode: "read_only" | "sandboxed" | "host";
|
|
11711
11757
|
projectID: string;
|
|
@@ -11722,6 +11768,7 @@ export type NotebookRestartResponses = {
|
|
|
11722
11768
|
network: "allow" | "deny";
|
|
11723
11769
|
allowWrite: Array<string>;
|
|
11724
11770
|
onUnavailable: "warn" | "error" | "allow";
|
|
11771
|
+
requireProjectTrust?: boolean;
|
|
11725
11772
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11726
11773
|
available: boolean;
|
|
11727
11774
|
enforced: boolean;
|
|
@@ -11819,6 +11866,7 @@ export type NotebookStopResponses = {
|
|
|
11819
11866
|
authority: {
|
|
11820
11867
|
allowed: boolean;
|
|
11821
11868
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11869
|
+
message?: string;
|
|
11822
11870
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11823
11871
|
mode: "read_only" | "sandboxed" | "host";
|
|
11824
11872
|
projectID: string;
|
|
@@ -11835,6 +11883,7 @@ export type NotebookStopResponses = {
|
|
|
11835
11883
|
network: "allow" | "deny";
|
|
11836
11884
|
allowWrite: Array<string>;
|
|
11837
11885
|
onUnavailable: "warn" | "error" | "allow";
|
|
11886
|
+
requireProjectTrust?: boolean;
|
|
11838
11887
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11839
11888
|
available: boolean;
|
|
11840
11889
|
enforced: boolean;
|
|
@@ -11932,6 +11981,7 @@ export type NotebookInterruptResponses = {
|
|
|
11932
11981
|
authority: {
|
|
11933
11982
|
allowed: boolean;
|
|
11934
11983
|
reason: "allowed" | "project_untrusted" | "sandbox_unavailable";
|
|
11984
|
+
message?: string;
|
|
11935
11985
|
capability: "terminal" | "kernel" | "shell" | "local_job" | "remote_job" | "package_install" | "project_plugin" | "project_mcp" | "project_formatter" | "project_lsp" | "provider_token_command";
|
|
11936
11986
|
mode: "read_only" | "sandboxed" | "host";
|
|
11937
11987
|
projectID: string;
|
|
@@ -11948,6 +11998,7 @@ export type NotebookInterruptResponses = {
|
|
|
11948
11998
|
network: "allow" | "deny";
|
|
11949
11999
|
allowWrite: Array<string>;
|
|
11950
12000
|
onUnavailable: "warn" | "error" | "allow";
|
|
12001
|
+
requireProjectTrust?: boolean;
|
|
11951
12002
|
backend: "seatbelt" | "bubblewrap" | "none";
|
|
11952
12003
|
available: boolean;
|
|
11953
12004
|
enforced: boolean;
|