@nextclaw/server 0.15.27 → 0.15.29
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/index.d.ts +354 -13
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -789,6 +789,24 @@ type PreferenceDeleteResult = {
|
|
|
789
789
|
deleted: boolean;
|
|
790
790
|
};
|
|
791
791
|
//#endregion
|
|
792
|
+
//#region ../nextclaw-app-runtime/dist/types/app-bundle.types.d.ts
|
|
793
|
+
//#region src/types/app-bundle.types.d.ts
|
|
794
|
+
type AppDistributionMode = "bundle" | "source";
|
|
795
|
+
//#endregion
|
|
796
|
+
//#region ../nextclaw-app-runtime/dist/types/app-manifest.types.d.ts
|
|
797
|
+
//#region src/types/app-manifest.types.d.ts
|
|
798
|
+
type AppDocumentAccessMode = "read" | "read-write";
|
|
799
|
+
type AppRuntimeProfile = "panel-only" | "wasi" | "native-process";
|
|
800
|
+
type AppRuntimeIsolation = "sandboxed" | "host-mediated" | "full-user";
|
|
801
|
+
type AppComponentKind = "panel" | "service";
|
|
802
|
+
//#endregion
|
|
803
|
+
//#region ../nextclaw-app-runtime/dist/types/app-storage.types.d.ts
|
|
804
|
+
type AppStorageLayout = "legacy" | "instance-v1";
|
|
805
|
+
//#endregion
|
|
806
|
+
//#region ../nextclaw-app-runtime/dist/types/app-registry.types.d.ts
|
|
807
|
+
//#region src/types/app-registry.types.d.ts
|
|
808
|
+
type AppInstallSourceKind = "bundle" | "directory" | "registry";
|
|
809
|
+
//#endregion
|
|
792
810
|
//#region src/features/service-apps/controllers/service-apps.controller.d.ts
|
|
793
811
|
declare class ServiceAppsRoutesController {
|
|
794
812
|
private readonly params;
|
|
@@ -822,6 +840,20 @@ declare class ServiceAppsRoutesController {
|
|
|
822
840
|
packageVersion?: string | undefined;
|
|
823
841
|
packageDirectory?: string | undefined;
|
|
824
842
|
dataDirectory?: string | undefined;
|
|
843
|
+
instanceId?: string | undefined;
|
|
844
|
+
storage?: {
|
|
845
|
+
layout: AppStorageLayout;
|
|
846
|
+
layoutVersion: 1;
|
|
847
|
+
instanceId: string;
|
|
848
|
+
instanceDirectory: string;
|
|
849
|
+
dataDirectory: string;
|
|
850
|
+
configDirectory: string;
|
|
851
|
+
stateDirectory: string;
|
|
852
|
+
cacheDirectory: string;
|
|
853
|
+
temporaryDirectory: string;
|
|
854
|
+
logsDirectory: string;
|
|
855
|
+
} | undefined;
|
|
856
|
+
isolation?: AppRuntimeIsolation | undefined;
|
|
825
857
|
}[];
|
|
826
858
|
};
|
|
827
859
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
@@ -848,6 +880,20 @@ declare class ServiceAppsRoutesController {
|
|
|
848
880
|
packageVersion?: string | undefined;
|
|
849
881
|
packageDirectory?: string | undefined;
|
|
850
882
|
dataDirectory?: string | undefined;
|
|
883
|
+
instanceId?: string | undefined;
|
|
884
|
+
storage?: {
|
|
885
|
+
layout: AppStorageLayout;
|
|
886
|
+
layoutVersion: 1;
|
|
887
|
+
instanceId: string;
|
|
888
|
+
instanceDirectory: string;
|
|
889
|
+
dataDirectory: string;
|
|
890
|
+
configDirectory: string;
|
|
891
|
+
stateDirectory: string;
|
|
892
|
+
cacheDirectory: string;
|
|
893
|
+
temporaryDirectory: string;
|
|
894
|
+
logsDirectory: string;
|
|
895
|
+
} | undefined;
|
|
896
|
+
isolation?: AppRuntimeIsolation | undefined;
|
|
851
897
|
};
|
|
852
898
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
853
899
|
ok: boolean;
|
|
@@ -1040,6 +1086,20 @@ declare class ServiceAppsRoutesController {
|
|
|
1040
1086
|
packageVersion?: string | undefined;
|
|
1041
1087
|
packageDirectory?: string | undefined;
|
|
1042
1088
|
dataDirectory?: string | undefined;
|
|
1089
|
+
instanceId?: string | undefined;
|
|
1090
|
+
storage?: {
|
|
1091
|
+
layout: AppStorageLayout;
|
|
1092
|
+
layoutVersion: 1;
|
|
1093
|
+
instanceId: string;
|
|
1094
|
+
instanceDirectory: string;
|
|
1095
|
+
dataDirectory: string;
|
|
1096
|
+
configDirectory: string;
|
|
1097
|
+
stateDirectory: string;
|
|
1098
|
+
cacheDirectory: string;
|
|
1099
|
+
temporaryDirectory: string;
|
|
1100
|
+
logsDirectory: string;
|
|
1101
|
+
} | undefined;
|
|
1102
|
+
isolation?: AppRuntimeIsolation | undefined;
|
|
1043
1103
|
};
|
|
1044
1104
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
1045
1105
|
ok: boolean;
|
|
@@ -3533,19 +3593,6 @@ declare function updateChannel(configPath: string, channelName: string, patch: R
|
|
|
3533
3593
|
declare function updateRuntime(configPath: string, patch: RuntimeConfigUpdate): Pick<ConfigView, "companion" | "agents" | "bindings" | "session">;
|
|
3534
3594
|
declare function updateSecrets(configPath: string, patch: SecretsConfigUpdate): SecretsView;
|
|
3535
3595
|
//#endregion
|
|
3536
|
-
//#region ../nextclaw-app-runtime/dist/types/app-manifest.types.d.ts
|
|
3537
|
-
//#region src/types/app-manifest.types.d.ts
|
|
3538
|
-
type AppDocumentAccessMode = "read" | "read-write";
|
|
3539
|
-
type AppComponentKind = "panel" | "service";
|
|
3540
|
-
//#endregion
|
|
3541
|
-
//#region ../nextclaw-app-runtime/dist/types/app-bundle.types.d.ts
|
|
3542
|
-
//#region src/types/app-bundle.types.d.ts
|
|
3543
|
-
type AppDistributionMode = "bundle" | "source";
|
|
3544
|
-
//#endregion
|
|
3545
|
-
//#region ../nextclaw-app-runtime/dist/types/app-registry.types.d.ts
|
|
3546
|
-
//#region src/types/app-registry.types.d.ts
|
|
3547
|
-
type AppInstallSourceKind = "bundle" | "directory" | "registry";
|
|
3548
|
-
//#endregion
|
|
3549
3596
|
//#region src/features/app-packages/controllers/app-packages.controller.d.ts
|
|
3550
3597
|
declare class AppPackagesRoutesController {
|
|
3551
3598
|
private readonly manager;
|
|
@@ -3577,6 +3624,21 @@ declare class AppPackagesRoutesController {
|
|
|
3577
3624
|
sourcePath: string;
|
|
3578
3625
|
manifestPath: string;
|
|
3579
3626
|
dataDirectory: string;
|
|
3627
|
+
instanceId: string;
|
|
3628
|
+
storage: {
|
|
3629
|
+
layout: AppStorageLayout;
|
|
3630
|
+
layoutVersion: 1;
|
|
3631
|
+
instanceId: string;
|
|
3632
|
+
instanceDirectory: string;
|
|
3633
|
+
dataDirectory: string;
|
|
3634
|
+
configDirectory: string;
|
|
3635
|
+
stateDirectory: string;
|
|
3636
|
+
cacheDirectory: string;
|
|
3637
|
+
temporaryDirectory: string;
|
|
3638
|
+
logsDirectory: string;
|
|
3639
|
+
};
|
|
3640
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3641
|
+
isolation: AppRuntimeIsolation;
|
|
3580
3642
|
title?: string | undefined;
|
|
3581
3643
|
description?: string | undefined;
|
|
3582
3644
|
icon?: string | undefined;
|
|
@@ -3588,6 +3650,30 @@ declare class AppPackagesRoutesController {
|
|
|
3588
3650
|
} | undefined;
|
|
3589
3651
|
}[];
|
|
3590
3652
|
dataDirectory: string;
|
|
3653
|
+
instanceId: string;
|
|
3654
|
+
storage: {
|
|
3655
|
+
layout: AppStorageLayout;
|
|
3656
|
+
layoutVersion: 1;
|
|
3657
|
+
instanceId: string;
|
|
3658
|
+
instanceDirectory: string;
|
|
3659
|
+
dataDirectory: string;
|
|
3660
|
+
configDirectory: string;
|
|
3661
|
+
stateDirectory: string;
|
|
3662
|
+
cacheDirectory: string;
|
|
3663
|
+
temporaryDirectory: string;
|
|
3664
|
+
logsDirectory: string;
|
|
3665
|
+
};
|
|
3666
|
+
storageUsage: {
|
|
3667
|
+
dataBytes: number;
|
|
3668
|
+
configBytes: number;
|
|
3669
|
+
stateBytes: number;
|
|
3670
|
+
cacheBytes: number;
|
|
3671
|
+
temporaryBytes: number;
|
|
3672
|
+
logsBytes: number;
|
|
3673
|
+
totalBytes: number;
|
|
3674
|
+
};
|
|
3675
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3676
|
+
isolation: AppRuntimeIsolation;
|
|
3591
3677
|
}[];
|
|
3592
3678
|
};
|
|
3593
3679
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
@@ -3784,6 +3870,21 @@ declare class AppPackagesRoutesController {
|
|
|
3784
3870
|
sourcePath: string;
|
|
3785
3871
|
manifestPath: string;
|
|
3786
3872
|
dataDirectory: string;
|
|
3873
|
+
instanceId: string;
|
|
3874
|
+
storage: {
|
|
3875
|
+
layout: AppStorageLayout;
|
|
3876
|
+
layoutVersion: 1;
|
|
3877
|
+
instanceId: string;
|
|
3878
|
+
instanceDirectory: string;
|
|
3879
|
+
dataDirectory: string;
|
|
3880
|
+
configDirectory: string;
|
|
3881
|
+
stateDirectory: string;
|
|
3882
|
+
cacheDirectory: string;
|
|
3883
|
+
temporaryDirectory: string;
|
|
3884
|
+
logsDirectory: string;
|
|
3885
|
+
};
|
|
3886
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3887
|
+
isolation: AppRuntimeIsolation;
|
|
3787
3888
|
title?: string | undefined;
|
|
3788
3889
|
description?: string | undefined;
|
|
3789
3890
|
icon?: string | undefined;
|
|
@@ -3795,6 +3896,30 @@ declare class AppPackagesRoutesController {
|
|
|
3795
3896
|
} | undefined;
|
|
3796
3897
|
}[];
|
|
3797
3898
|
dataDirectory: string;
|
|
3899
|
+
instanceId: string;
|
|
3900
|
+
storage: {
|
|
3901
|
+
layout: AppStorageLayout;
|
|
3902
|
+
layoutVersion: 1;
|
|
3903
|
+
instanceId: string;
|
|
3904
|
+
instanceDirectory: string;
|
|
3905
|
+
dataDirectory: string;
|
|
3906
|
+
configDirectory: string;
|
|
3907
|
+
stateDirectory: string;
|
|
3908
|
+
cacheDirectory: string;
|
|
3909
|
+
temporaryDirectory: string;
|
|
3910
|
+
logsDirectory: string;
|
|
3911
|
+
};
|
|
3912
|
+
storageUsage: {
|
|
3913
|
+
dataBytes: number;
|
|
3914
|
+
configBytes: number;
|
|
3915
|
+
stateBytes: number;
|
|
3916
|
+
cacheBytes: number;
|
|
3917
|
+
temporaryBytes: number;
|
|
3918
|
+
logsBytes: number;
|
|
3919
|
+
totalBytes: number;
|
|
3920
|
+
};
|
|
3921
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3922
|
+
isolation: AppRuntimeIsolation;
|
|
3798
3923
|
};
|
|
3799
3924
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3800
3925
|
readonly install: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -3832,6 +3957,21 @@ declare class AppPackagesRoutesController {
|
|
|
3832
3957
|
sourcePath: string;
|
|
3833
3958
|
manifestPath: string;
|
|
3834
3959
|
dataDirectory: string;
|
|
3960
|
+
instanceId: string;
|
|
3961
|
+
storage: {
|
|
3962
|
+
layout: AppStorageLayout;
|
|
3963
|
+
layoutVersion: 1;
|
|
3964
|
+
instanceId: string;
|
|
3965
|
+
instanceDirectory: string;
|
|
3966
|
+
dataDirectory: string;
|
|
3967
|
+
configDirectory: string;
|
|
3968
|
+
stateDirectory: string;
|
|
3969
|
+
cacheDirectory: string;
|
|
3970
|
+
temporaryDirectory: string;
|
|
3971
|
+
logsDirectory: string;
|
|
3972
|
+
};
|
|
3973
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3974
|
+
isolation: AppRuntimeIsolation;
|
|
3835
3975
|
title?: string | undefined;
|
|
3836
3976
|
description?: string | undefined;
|
|
3837
3977
|
icon?: string | undefined;
|
|
@@ -3843,6 +3983,30 @@ declare class AppPackagesRoutesController {
|
|
|
3843
3983
|
} | undefined;
|
|
3844
3984
|
}[];
|
|
3845
3985
|
dataDirectory: string;
|
|
3986
|
+
instanceId: string;
|
|
3987
|
+
storage: {
|
|
3988
|
+
layout: AppStorageLayout;
|
|
3989
|
+
layoutVersion: 1;
|
|
3990
|
+
instanceId: string;
|
|
3991
|
+
instanceDirectory: string;
|
|
3992
|
+
dataDirectory: string;
|
|
3993
|
+
configDirectory: string;
|
|
3994
|
+
stateDirectory: string;
|
|
3995
|
+
cacheDirectory: string;
|
|
3996
|
+
temporaryDirectory: string;
|
|
3997
|
+
logsDirectory: string;
|
|
3998
|
+
};
|
|
3999
|
+
storageUsage: {
|
|
4000
|
+
dataBytes: number;
|
|
4001
|
+
configBytes: number;
|
|
4002
|
+
stateBytes: number;
|
|
4003
|
+
cacheBytes: number;
|
|
4004
|
+
temporaryBytes: number;
|
|
4005
|
+
logsBytes: number;
|
|
4006
|
+
totalBytes: number;
|
|
4007
|
+
};
|
|
4008
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4009
|
+
isolation: AppRuntimeIsolation;
|
|
3846
4010
|
};
|
|
3847
4011
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3848
4012
|
readonly enable: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -3880,6 +4044,21 @@ declare class AppPackagesRoutesController {
|
|
|
3880
4044
|
sourcePath: string;
|
|
3881
4045
|
manifestPath: string;
|
|
3882
4046
|
dataDirectory: string;
|
|
4047
|
+
instanceId: string;
|
|
4048
|
+
storage: {
|
|
4049
|
+
layout: AppStorageLayout;
|
|
4050
|
+
layoutVersion: 1;
|
|
4051
|
+
instanceId: string;
|
|
4052
|
+
instanceDirectory: string;
|
|
4053
|
+
dataDirectory: string;
|
|
4054
|
+
configDirectory: string;
|
|
4055
|
+
stateDirectory: string;
|
|
4056
|
+
cacheDirectory: string;
|
|
4057
|
+
temporaryDirectory: string;
|
|
4058
|
+
logsDirectory: string;
|
|
4059
|
+
};
|
|
4060
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4061
|
+
isolation: AppRuntimeIsolation;
|
|
3883
4062
|
title?: string | undefined;
|
|
3884
4063
|
description?: string | undefined;
|
|
3885
4064
|
icon?: string | undefined;
|
|
@@ -3891,6 +4070,30 @@ declare class AppPackagesRoutesController {
|
|
|
3891
4070
|
} | undefined;
|
|
3892
4071
|
}[];
|
|
3893
4072
|
dataDirectory: string;
|
|
4073
|
+
instanceId: string;
|
|
4074
|
+
storage: {
|
|
4075
|
+
layout: AppStorageLayout;
|
|
4076
|
+
layoutVersion: 1;
|
|
4077
|
+
instanceId: string;
|
|
4078
|
+
instanceDirectory: string;
|
|
4079
|
+
dataDirectory: string;
|
|
4080
|
+
configDirectory: string;
|
|
4081
|
+
stateDirectory: string;
|
|
4082
|
+
cacheDirectory: string;
|
|
4083
|
+
temporaryDirectory: string;
|
|
4084
|
+
logsDirectory: string;
|
|
4085
|
+
};
|
|
4086
|
+
storageUsage: {
|
|
4087
|
+
dataBytes: number;
|
|
4088
|
+
configBytes: number;
|
|
4089
|
+
stateBytes: number;
|
|
4090
|
+
cacheBytes: number;
|
|
4091
|
+
temporaryBytes: number;
|
|
4092
|
+
logsBytes: number;
|
|
4093
|
+
totalBytes: number;
|
|
4094
|
+
};
|
|
4095
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4096
|
+
isolation: AppRuntimeIsolation;
|
|
3894
4097
|
};
|
|
3895
4098
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3896
4099
|
readonly disable: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -3928,6 +4131,21 @@ declare class AppPackagesRoutesController {
|
|
|
3928
4131
|
sourcePath: string;
|
|
3929
4132
|
manifestPath: string;
|
|
3930
4133
|
dataDirectory: string;
|
|
4134
|
+
instanceId: string;
|
|
4135
|
+
storage: {
|
|
4136
|
+
layout: AppStorageLayout;
|
|
4137
|
+
layoutVersion: 1;
|
|
4138
|
+
instanceId: string;
|
|
4139
|
+
instanceDirectory: string;
|
|
4140
|
+
dataDirectory: string;
|
|
4141
|
+
configDirectory: string;
|
|
4142
|
+
stateDirectory: string;
|
|
4143
|
+
cacheDirectory: string;
|
|
4144
|
+
temporaryDirectory: string;
|
|
4145
|
+
logsDirectory: string;
|
|
4146
|
+
};
|
|
4147
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4148
|
+
isolation: AppRuntimeIsolation;
|
|
3931
4149
|
title?: string | undefined;
|
|
3932
4150
|
description?: string | undefined;
|
|
3933
4151
|
icon?: string | undefined;
|
|
@@ -3939,6 +4157,30 @@ declare class AppPackagesRoutesController {
|
|
|
3939
4157
|
} | undefined;
|
|
3940
4158
|
}[];
|
|
3941
4159
|
dataDirectory: string;
|
|
4160
|
+
instanceId: string;
|
|
4161
|
+
storage: {
|
|
4162
|
+
layout: AppStorageLayout;
|
|
4163
|
+
layoutVersion: 1;
|
|
4164
|
+
instanceId: string;
|
|
4165
|
+
instanceDirectory: string;
|
|
4166
|
+
dataDirectory: string;
|
|
4167
|
+
configDirectory: string;
|
|
4168
|
+
stateDirectory: string;
|
|
4169
|
+
cacheDirectory: string;
|
|
4170
|
+
temporaryDirectory: string;
|
|
4171
|
+
logsDirectory: string;
|
|
4172
|
+
};
|
|
4173
|
+
storageUsage: {
|
|
4174
|
+
dataBytes: number;
|
|
4175
|
+
configBytes: number;
|
|
4176
|
+
stateBytes: number;
|
|
4177
|
+
cacheBytes: number;
|
|
4178
|
+
temporaryBytes: number;
|
|
4179
|
+
logsBytes: number;
|
|
4180
|
+
totalBytes: number;
|
|
4181
|
+
};
|
|
4182
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4183
|
+
isolation: AppRuntimeIsolation;
|
|
3942
4184
|
};
|
|
3943
4185
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3944
4186
|
readonly update: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -3977,6 +4219,21 @@ declare class AppPackagesRoutesController {
|
|
|
3977
4219
|
sourcePath: string;
|
|
3978
4220
|
manifestPath: string;
|
|
3979
4221
|
dataDirectory: string;
|
|
4222
|
+
instanceId: string;
|
|
4223
|
+
storage: {
|
|
4224
|
+
layout: AppStorageLayout;
|
|
4225
|
+
layoutVersion: 1;
|
|
4226
|
+
instanceId: string;
|
|
4227
|
+
instanceDirectory: string;
|
|
4228
|
+
dataDirectory: string;
|
|
4229
|
+
configDirectory: string;
|
|
4230
|
+
stateDirectory: string;
|
|
4231
|
+
cacheDirectory: string;
|
|
4232
|
+
temporaryDirectory: string;
|
|
4233
|
+
logsDirectory: string;
|
|
4234
|
+
};
|
|
4235
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4236
|
+
isolation: AppRuntimeIsolation;
|
|
3980
4237
|
title?: string | undefined;
|
|
3981
4238
|
description?: string | undefined;
|
|
3982
4239
|
icon?: string | undefined;
|
|
@@ -3988,6 +4245,30 @@ declare class AppPackagesRoutesController {
|
|
|
3988
4245
|
} | undefined;
|
|
3989
4246
|
}[];
|
|
3990
4247
|
dataDirectory: string;
|
|
4248
|
+
instanceId: string;
|
|
4249
|
+
storage: {
|
|
4250
|
+
layout: AppStorageLayout;
|
|
4251
|
+
layoutVersion: 1;
|
|
4252
|
+
instanceId: string;
|
|
4253
|
+
instanceDirectory: string;
|
|
4254
|
+
dataDirectory: string;
|
|
4255
|
+
configDirectory: string;
|
|
4256
|
+
stateDirectory: string;
|
|
4257
|
+
cacheDirectory: string;
|
|
4258
|
+
temporaryDirectory: string;
|
|
4259
|
+
logsDirectory: string;
|
|
4260
|
+
};
|
|
4261
|
+
storageUsage: {
|
|
4262
|
+
dataBytes: number;
|
|
4263
|
+
configBytes: number;
|
|
4264
|
+
stateBytes: number;
|
|
4265
|
+
cacheBytes: number;
|
|
4266
|
+
temporaryBytes: number;
|
|
4267
|
+
logsBytes: number;
|
|
4268
|
+
totalBytes: number;
|
|
4269
|
+
};
|
|
4270
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4271
|
+
isolation: AppRuntimeIsolation;
|
|
3991
4272
|
};
|
|
3992
4273
|
result: {
|
|
3993
4274
|
appId: string;
|
|
@@ -3995,6 +4276,26 @@ declare class AppPackagesRoutesController {
|
|
|
3995
4276
|
version: string;
|
|
3996
4277
|
installDirectory: string;
|
|
3997
4278
|
dataDirectory: string;
|
|
4279
|
+
instance: {
|
|
4280
|
+
id: string;
|
|
4281
|
+
publisherId?: string | undefined;
|
|
4282
|
+
storage: {
|
|
4283
|
+
layout: AppStorageLayout;
|
|
4284
|
+
layoutVersion: 1;
|
|
4285
|
+
instanceId: string;
|
|
4286
|
+
instanceDirectory: string;
|
|
4287
|
+
dataDirectory: string;
|
|
4288
|
+
configDirectory: string;
|
|
4289
|
+
stateDirectory: string;
|
|
4290
|
+
cacheDirectory: string;
|
|
4291
|
+
temporaryDirectory: string;
|
|
4292
|
+
logsDirectory: string;
|
|
4293
|
+
};
|
|
4294
|
+
dataSchemaVersion: number;
|
|
4295
|
+
createdAt: string;
|
|
4296
|
+
migratedAt?: string | undefined;
|
|
4297
|
+
legacyDataDirectory?: string | undefined;
|
|
4298
|
+
};
|
|
3998
4299
|
sourceKind: AppInstallSourceKind;
|
|
3999
4300
|
distributionMode?: AppDistributionMode | undefined;
|
|
4000
4301
|
sourceRef: string;
|
|
@@ -4010,6 +4311,7 @@ declare class AppPackagesRoutesController {
|
|
|
4010
4311
|
} | undefined;
|
|
4011
4312
|
capabilities?: {
|
|
4012
4313
|
hostBridge?: boolean | undefined;
|
|
4314
|
+
nativeProcess?: boolean | undefined;
|
|
4013
4315
|
} | undefined;
|
|
4014
4316
|
};
|
|
4015
4317
|
registryUrl?: string | undefined;
|
|
@@ -4071,6 +4373,21 @@ declare class AppPackagesRoutesController {
|
|
|
4071
4373
|
sourcePath: string;
|
|
4072
4374
|
manifestPath: string;
|
|
4073
4375
|
dataDirectory: string;
|
|
4376
|
+
instanceId: string;
|
|
4377
|
+
storage: {
|
|
4378
|
+
layout: AppStorageLayout;
|
|
4379
|
+
layoutVersion: 1;
|
|
4380
|
+
instanceId: string;
|
|
4381
|
+
instanceDirectory: string;
|
|
4382
|
+
dataDirectory: string;
|
|
4383
|
+
configDirectory: string;
|
|
4384
|
+
stateDirectory: string;
|
|
4385
|
+
cacheDirectory: string;
|
|
4386
|
+
temporaryDirectory: string;
|
|
4387
|
+
logsDirectory: string;
|
|
4388
|
+
};
|
|
4389
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4390
|
+
isolation: AppRuntimeIsolation;
|
|
4074
4391
|
title?: string | undefined;
|
|
4075
4392
|
description?: string | undefined;
|
|
4076
4393
|
icon?: string | undefined;
|
|
@@ -4082,6 +4399,30 @@ declare class AppPackagesRoutesController {
|
|
|
4082
4399
|
} | undefined;
|
|
4083
4400
|
}[];
|
|
4084
4401
|
dataDirectory: string;
|
|
4402
|
+
instanceId: string;
|
|
4403
|
+
storage: {
|
|
4404
|
+
layout: AppStorageLayout;
|
|
4405
|
+
layoutVersion: 1;
|
|
4406
|
+
instanceId: string;
|
|
4407
|
+
instanceDirectory: string;
|
|
4408
|
+
dataDirectory: string;
|
|
4409
|
+
configDirectory: string;
|
|
4410
|
+
stateDirectory: string;
|
|
4411
|
+
cacheDirectory: string;
|
|
4412
|
+
temporaryDirectory: string;
|
|
4413
|
+
logsDirectory: string;
|
|
4414
|
+
};
|
|
4415
|
+
storageUsage: {
|
|
4416
|
+
dataBytes: number;
|
|
4417
|
+
configBytes: number;
|
|
4418
|
+
stateBytes: number;
|
|
4419
|
+
cacheBytes: number;
|
|
4420
|
+
temporaryBytes: number;
|
|
4421
|
+
logsBytes: number;
|
|
4422
|
+
totalBytes: number;
|
|
4423
|
+
};
|
|
4424
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4425
|
+
isolation: AppRuntimeIsolation;
|
|
4085
4426
|
};
|
|
4086
4427
|
result: {
|
|
4087
4428
|
appId: string;
|