@pipelab/shared 1.0.0-beta.13 → 1.0.0-beta.15

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.mts CHANGED
@@ -906,113 +906,394 @@ type EnhancedFile<T = SavedFile> = WithId<SaveLocation> & {
906
906
  content: T;
907
907
  };
908
908
  //#endregion
909
- //#region src/websocket.types.d.ts
910
- type WebSocketConnectionState = "connecting" | "connected" | "disconnected" | "error" | "reconnecting";
911
- interface WebSocketServerConfig {
912
- port?: number;
913
- host?: string;
914
- maxReconnectAttempts?: number;
915
- reconnectDelay?: number;
916
- }
917
- interface WebSocketServerEvents {
918
- connection: (ws: WebSocket, request: IncomingMessage$1) => void;
919
- message: (ws: WebSocket, data: Buffer) => void;
920
- close: (ws: WebSocket) => void;
921
- error: (ws: WebSocket, error: Error) => void;
922
- }
923
- interface WebSocketClientConfig {
924
- url?: string;
925
- maxReconnectAttempts?: number;
926
- reconnectDelay?: number;
927
- timeout?: number;
928
- }
929
- interface WebSocketClientEvents {
930
- open: () => void;
931
- message: (event: MessageEvent) => void;
932
- close: (event: CloseEvent) => void;
933
- error: (error: Event) => void;
934
- }
935
- interface WebSocketEvent {
936
- sender: string;
937
- timestamp?: number;
938
- }
939
- interface WebSocketRequestMessage {
940
- channel: Channels;
941
- requestId: RequestId$1;
942
- data: any;
943
- }
944
- interface WebSocketResponseMessage {
945
- type: "response";
946
- requestId: RequestId$1;
947
- events: Events<any>;
948
- }
949
- interface WebSocketErrorMessage {
950
- type: "error";
951
- requestId: RequestId$1;
952
- error: string;
953
- code?: string;
954
- }
955
- type WebSocketMessage = WebSocketRequestMessage | WebSocketResponseMessage | WebSocketErrorMessage;
956
- interface WebSocketConnectionInfo {
957
- id: string;
958
- state: WebSocketConnectionState;
959
- url: string;
960
- connectedAt?: Date;
961
- lastActivity?: Date;
962
- }
963
- interface Agent {
964
- id: string;
965
- name: string;
966
- isSelf: boolean;
967
- connectedAt?: number;
968
- }
969
- type WebSocketHandler<KEY extends Channels> = (event: WebSocketEvent, data: {
970
- value: Data$1<KEY>;
971
- send: WebSocketSendFunction<KEY>;
972
- }) => Promise<void>;
973
- type WebSocketSendFunction<KEY extends Channels> = (events: Events<KEY>) => Promise<void>;
974
- type WebSocketListener<KEY extends Channels> = (event: Events<KEY>) => Promise<void>;
975
- interface WebSocketAPI {
976
- execute: <KEY extends Channels>(channel: KEY, data?: Data$1<KEY>, listener?: WebSocketListener<KEY>) => Promise<End<KEY>>;
977
- send: <KEY extends Channels>(channel: KEY, data?: Data$1<KEY>) => Promise<End<KEY>>;
978
- on: <KEY extends Channels>(channel: KEY, listener: (event: WebSocketEvent, data: Events<KEY>) => void) => () => void;
979
- isConnected: () => boolean;
980
- disconnect: () => void;
981
- }
982
- interface WebSocketManager {
983
- connect: (url?: string) => Promise<void>;
984
- disconnect: () => void;
985
- send: <KEY extends Channels>(channel: KEY, data?: Data$1<KEY>) => Promise<End<KEY>>;
986
- isConnected: () => boolean;
987
- getConnectionState: () => WebSocketConnectionState;
988
- onStateChange: (callback: (state: WebSocketConnectionState) => void) => () => void;
989
- }
990
- declare class WebSocketError extends Error {
991
- code?: string;
992
- requestId?: RequestId$1;
993
- constructor(message: string, code?: string, requestId?: RequestId$1);
994
- }
995
- declare class WebSocketConnectionError extends WebSocketError {
996
- url?: string;
997
- constructor(message: string, url?: string);
998
- }
999
- declare class WebSocketTimeoutError extends WebSocketError {
1000
- timeout: number;
1001
- constructor(message: string, timeout: number, requestId?: RequestId$1);
1002
- }
1003
- declare const isWebSocketRequestMessage: (message: any) => message is WebSocketRequestMessage;
1004
- declare const isWebSocketResponseMessage: (message: any) => message is WebSocketResponseMessage;
1005
- declare const isWebSocketErrorMessage: (message: any) => message is WebSocketErrorMessage;
1006
- type WebSocketMessageType<T extends Channels> = {
1007
- channel: T;
1008
- requestId: RequestId$1;
1009
- data: Data$1<T>;
1010
- };
1011
- type WebSocketResponseType<T extends Channels> = {
1012
- type: "response";
1013
- requestId: RequestId$1;
1014
- events: Events<T>;
1015
- };
909
+ //#region src/config.schema.d.ts
910
+ declare const createVersionSchema: <T extends GenericSchema<any, any>>(schema: T) => T;
911
+ declare const AppSettingsValidatorV1: valibot.ObjectSchema<{
912
+ readonly cacheFolder: valibot.StringSchema<undefined>;
913
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
914
+ readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
915
+ }, undefined>;
916
+ declare const AppSettingsValidatorV2: valibot.ObjectSchema<{
917
+ readonly cacheFolder: valibot.StringSchema<undefined>;
918
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
919
+ readonly version: valibot.LiteralSchema<"2.0.0", undefined>;
920
+ }, undefined>;
921
+ declare const AppSettingsValidatorV3: valibot.ObjectSchema<{
922
+ readonly cacheFolder: valibot.StringSchema<undefined>;
923
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
924
+ readonly version: valibot.LiteralSchema<"3.0.0", undefined>;
925
+ readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
926
+ }, undefined>;
927
+ declare const AppSettingsValidatorV4: valibot.ObjectSchema<{
928
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
929
+ readonly version: valibot.LiteralSchema<"4.0.0", undefined>;
930
+ readonly cacheFolder: valibot.StringSchema<undefined>;
931
+ readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
932
+ readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
933
+ }, undefined>;
934
+ declare const AppSettingsValidatorV5: valibot.ObjectSchema<{
935
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
936
+ readonly version: valibot.LiteralSchema<"5.0.0", undefined>;
937
+ readonly cacheFolder: valibot.StringSchema<undefined>;
938
+ readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
939
+ readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
940
+ readonly tours: valibot.ObjectSchema<{
941
+ readonly dashboard: valibot.ObjectSchema<{
942
+ readonly step: valibot.NumberSchema<undefined>;
943
+ readonly completed: valibot.BooleanSchema<undefined>;
944
+ }, undefined>;
945
+ readonly editor: valibot.ObjectSchema<{
946
+ readonly step: valibot.NumberSchema<undefined>;
947
+ readonly completed: valibot.BooleanSchema<undefined>;
948
+ }, undefined>;
949
+ }, undefined>;
950
+ }, undefined>;
951
+ declare const AppSettingsValidatorV6: valibot.ObjectSchema<{
952
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
953
+ readonly version: valibot.LiteralSchema<"6.0.0", undefined>;
954
+ readonly cacheFolder: valibot.StringSchema<undefined>;
955
+ readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
956
+ readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
957
+ readonly tours: valibot.ObjectSchema<{
958
+ readonly dashboard: valibot.ObjectSchema<{
959
+ readonly step: valibot.NumberSchema<undefined>;
960
+ readonly completed: valibot.BooleanSchema<undefined>;
961
+ }, undefined>;
962
+ readonly editor: valibot.ObjectSchema<{
963
+ readonly step: valibot.NumberSchema<undefined>;
964
+ readonly completed: valibot.BooleanSchema<undefined>;
965
+ }, undefined>;
966
+ }, undefined>;
967
+ readonly autosave: valibot.BooleanSchema<undefined>;
968
+ }, undefined>;
969
+ declare const AppSettingsValidatorV7: valibot.ObjectSchema<{
970
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
971
+ readonly version: valibot.LiteralSchema<"7.0.0", undefined>;
972
+ readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
973
+ readonly tours: valibot.ObjectSchema<{
974
+ readonly dashboard: valibot.ObjectSchema<{
975
+ readonly step: valibot.NumberSchema<undefined>;
976
+ readonly completed: valibot.BooleanSchema<undefined>;
977
+ }, undefined>;
978
+ readonly editor: valibot.ObjectSchema<{
979
+ readonly step: valibot.NumberSchema<undefined>;
980
+ readonly completed: valibot.BooleanSchema<undefined>;
981
+ }, undefined>;
982
+ }, undefined>;
983
+ readonly autosave: valibot.BooleanSchema<undefined>;
984
+ readonly agents: valibot.ArraySchema<valibot.ObjectSchema<{
985
+ readonly id: valibot.StringSchema<undefined>;
986
+ readonly name: valibot.StringSchema<undefined>;
987
+ readonly url: valibot.StringSchema<undefined>;
988
+ }, undefined>, undefined>;
989
+ readonly plugins: valibot.ArraySchema<valibot.ObjectSchema<{
990
+ readonly name: valibot.StringSchema<undefined>;
991
+ readonly enabled: valibot.BooleanSchema<undefined>;
992
+ readonly description: valibot.StringSchema<undefined>;
993
+ }, undefined>, undefined>;
994
+ readonly cacheFolder: valibot.OptionalSchema<valibot.StringSchema<undefined>, never>;
995
+ readonly tempFolder: valibot.OptionalSchema<valibot.StringSchema<undefined>, never>;
996
+ }, undefined>;
997
+ declare const ConnectionValidator: valibot.LooseObjectSchema<{
998
+ readonly id: valibot.StringSchema<undefined>;
999
+ readonly pluginName: valibot.StringSchema<undefined>;
1000
+ readonly name: valibot.StringSchema<undefined>;
1001
+ readonly createdAt: valibot.StringSchema<undefined>;
1002
+ readonly isDefault: valibot.BooleanSchema<undefined>;
1003
+ }, undefined>;
1004
+ declare const ConnectionsValidatorV1: valibot.ObjectSchema<{
1005
+ readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1006
+ readonly connections: valibot.ArraySchema<valibot.LooseObjectSchema<{
1007
+ readonly id: valibot.StringSchema<undefined>;
1008
+ readonly pluginName: valibot.StringSchema<undefined>;
1009
+ readonly name: valibot.StringSchema<undefined>;
1010
+ readonly createdAt: valibot.StringSchema<undefined>;
1011
+ readonly isDefault: valibot.BooleanSchema<undefined>;
1012
+ }, undefined>, undefined>;
1013
+ }, undefined>;
1014
+ type Connection = InferInput<typeof ConnectionValidator>;
1015
+ type ConnectionsConfigV1 = InferInput<typeof ConnectionsValidatorV1>;
1016
+ type ConnectionsConfig = ConnectionsConfigV1;
1017
+ declare const ConnectionsValidator: valibot.ObjectSchema<{
1018
+ readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1019
+ readonly connections: valibot.ArraySchema<valibot.LooseObjectSchema<{
1020
+ readonly id: valibot.StringSchema<undefined>;
1021
+ readonly pluginName: valibot.StringSchema<undefined>;
1022
+ readonly name: valibot.StringSchema<undefined>;
1023
+ readonly createdAt: valibot.StringSchema<undefined>;
1024
+ readonly isDefault: valibot.BooleanSchema<undefined>;
1025
+ }, undefined>, undefined>;
1026
+ }, undefined>;
1027
+ type AppConfigV1 = InferInput<typeof AppSettingsValidatorV1>;
1028
+ type AppConfigV2 = InferInput<typeof AppSettingsValidatorV2>;
1029
+ type AppConfigV3 = InferInput<typeof AppSettingsValidatorV3>;
1030
+ type AppConfigV4 = InferInput<typeof AppSettingsValidatorV4>;
1031
+ type AppConfigV5 = InferInput<typeof AppSettingsValidatorV5>;
1032
+ type AppConfigV6 = InferInput<typeof AppSettingsValidatorV6>;
1033
+ type AppConfigV7 = InferInput<typeof AppSettingsValidatorV7>;
1034
+ type AppConfig = AppConfigV7;
1035
+ declare const AppSettingsValidator: valibot.ObjectSchema<{
1036
+ readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1037
+ readonly version: valibot.LiteralSchema<"7.0.0", undefined>;
1038
+ readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1039
+ readonly tours: valibot.ObjectSchema<{
1040
+ readonly dashboard: valibot.ObjectSchema<{
1041
+ readonly step: valibot.NumberSchema<undefined>;
1042
+ readonly completed: valibot.BooleanSchema<undefined>;
1043
+ }, undefined>;
1044
+ readonly editor: valibot.ObjectSchema<{
1045
+ readonly step: valibot.NumberSchema<undefined>;
1046
+ readonly completed: valibot.BooleanSchema<undefined>;
1047
+ }, undefined>;
1048
+ }, undefined>;
1049
+ readonly autosave: valibot.BooleanSchema<undefined>;
1050
+ readonly agents: valibot.ArraySchema<valibot.ObjectSchema<{
1051
+ readonly id: valibot.StringSchema<undefined>;
1052
+ readonly name: valibot.StringSchema<undefined>;
1053
+ readonly url: valibot.StringSchema<undefined>;
1054
+ }, undefined>, undefined>;
1055
+ readonly plugins: valibot.ArraySchema<valibot.ObjectSchema<{
1056
+ readonly name: valibot.StringSchema<undefined>;
1057
+ readonly enabled: valibot.BooleanSchema<undefined>;
1058
+ readonly description: valibot.StringSchema<undefined>;
1059
+ }, undefined>, undefined>;
1060
+ readonly cacheFolder: valibot.OptionalSchema<valibot.StringSchema<undefined>, never>;
1061
+ readonly tempFolder: valibot.OptionalSchema<valibot.StringSchema<undefined>, never>;
1062
+ }, undefined>;
1063
+ //#endregion
1064
+ //#region src/config/projects-definition.d.ts
1065
+ declare const FileRepoValidatorV1: valibot.ObjectSchema<{
1066
+ readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1067
+ readonly data: valibot.OptionalSchema<valibot.RecordSchema<valibot.StringSchema<undefined>, valibot.UnionSchema<[valibot.ObjectSchema<{
1068
+ readonly id: valibot.StringSchema<undefined>;
1069
+ readonly project: valibot.StringSchema<undefined>;
1070
+ readonly path: valibot.StringSchema<undefined>;
1071
+ readonly lastModified: valibot.StringSchema<undefined>;
1072
+ readonly type: valibot.LiteralSchema<"external", undefined>;
1073
+ readonly summary: valibot.ObjectSchema<{
1074
+ readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1075
+ readonly name: valibot.StringSchema<undefined>;
1076
+ readonly description: valibot.StringSchema<undefined>;
1077
+ }, undefined>;
1078
+ }, undefined>, valibot.ObjectSchema<{
1079
+ readonly id: valibot.StringSchema<undefined>;
1080
+ readonly project: valibot.StringSchema<undefined>;
1081
+ readonly lastModified: valibot.StringSchema<undefined>;
1082
+ readonly type: valibot.LiteralSchema<"internal", undefined>;
1083
+ readonly configName: valibot.StringSchema<undefined>;
1084
+ }, undefined>, valibot.ObjectSchema<{
1085
+ readonly id: valibot.StringSchema<undefined>;
1086
+ readonly project: valibot.StringSchema<undefined>;
1087
+ readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1088
+ }, undefined>], undefined>, undefined>, {}>;
1089
+ }, undefined>;
1090
+ declare const FileRepoProjectValidatorV2: valibot.ObjectSchema<{
1091
+ readonly id: valibot.StringSchema<undefined>;
1092
+ readonly name: valibot.StringSchema<undefined>;
1093
+ readonly description: valibot.StringSchema<undefined>;
1094
+ }, undefined>;
1095
+ declare const FileRepoValidatorV2: valibot.ObjectSchema<{
1096
+ readonly version: valibot.LiteralSchema<"2.0.0", undefined>;
1097
+ readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
1098
+ readonly id: valibot.StringSchema<undefined>;
1099
+ readonly name: valibot.StringSchema<undefined>;
1100
+ readonly description: valibot.StringSchema<undefined>;
1101
+ }, undefined>, undefined>;
1102
+ readonly pipelines: valibot.OptionalSchema<valibot.ArraySchema<valibot.UnionSchema<[valibot.ObjectSchema<{
1103
+ readonly id: valibot.StringSchema<undefined>;
1104
+ readonly project: valibot.StringSchema<undefined>;
1105
+ readonly path: valibot.StringSchema<undefined>;
1106
+ readonly lastModified: valibot.StringSchema<undefined>;
1107
+ readonly type: valibot.LiteralSchema<"external", undefined>;
1108
+ readonly summary: valibot.ObjectSchema<{
1109
+ readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1110
+ readonly name: valibot.StringSchema<undefined>;
1111
+ readonly description: valibot.StringSchema<undefined>;
1112
+ }, undefined>;
1113
+ }, undefined>, valibot.ObjectSchema<{
1114
+ readonly id: valibot.StringSchema<undefined>;
1115
+ readonly project: valibot.StringSchema<undefined>;
1116
+ readonly lastModified: valibot.StringSchema<undefined>;
1117
+ readonly type: valibot.LiteralSchema<"internal", undefined>;
1118
+ readonly configName: valibot.StringSchema<undefined>;
1119
+ }, undefined>, valibot.ObjectSchema<{
1120
+ readonly id: valibot.StringSchema<undefined>;
1121
+ readonly project: valibot.StringSchema<undefined>;
1122
+ readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1123
+ }, undefined>], undefined>, undefined>, readonly []>;
1124
+ }, undefined>;
1125
+ declare const FileRepoValidatorV3: valibot.ObjectSchema<{
1126
+ readonly version: valibot.LiteralSchema<"3.0.0", undefined>;
1127
+ readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
1128
+ readonly id: valibot.StringSchema<undefined>;
1129
+ readonly name: valibot.StringSchema<undefined>;
1130
+ readonly description: valibot.StringSchema<undefined>;
1131
+ }, undefined>, undefined>;
1132
+ readonly pipelines: valibot.OptionalSchema<valibot.ArraySchema<valibot.UnionSchema<[valibot.ObjectSchema<{
1133
+ readonly id: valibot.StringSchema<undefined>;
1134
+ readonly project: valibot.StringSchema<undefined>;
1135
+ readonly path: valibot.StringSchema<undefined>;
1136
+ readonly lastModified: valibot.StringSchema<undefined>;
1137
+ readonly type: valibot.LiteralSchema<"external", undefined>;
1138
+ readonly summary: valibot.ObjectSchema<{
1139
+ readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1140
+ readonly name: valibot.StringSchema<undefined>;
1141
+ readonly description: valibot.StringSchema<undefined>;
1142
+ }, undefined>;
1143
+ }, undefined>, valibot.ObjectSchema<{
1144
+ readonly id: valibot.StringSchema<undefined>;
1145
+ readonly project: valibot.StringSchema<undefined>;
1146
+ readonly lastModified: valibot.StringSchema<undefined>;
1147
+ readonly type: valibot.LiteralSchema<"internal", undefined>;
1148
+ readonly configName: valibot.StringSchema<undefined>;
1149
+ }, undefined>, valibot.ObjectSchema<{
1150
+ readonly id: valibot.StringSchema<undefined>;
1151
+ readonly project: valibot.StringSchema<undefined>;
1152
+ readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1153
+ }, undefined>], undefined>, undefined>, readonly []>;
1154
+ }, undefined>;
1155
+ type FileRepoV1 = InferInput<typeof FileRepoValidatorV1>;
1156
+ type FileRepoV2 = InferInput<typeof FileRepoValidatorV2>;
1157
+ type FileRepoV3 = InferInput<typeof FileRepoValidatorV3>;
1158
+ declare const FileRepoValidator: valibot.ObjectSchema<{
1159
+ readonly version: valibot.LiteralSchema<"3.0.0", undefined>;
1160
+ readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
1161
+ readonly id: valibot.StringSchema<undefined>;
1162
+ readonly name: valibot.StringSchema<undefined>;
1163
+ readonly description: valibot.StringSchema<undefined>;
1164
+ }, undefined>, undefined>;
1165
+ readonly pipelines: valibot.OptionalSchema<valibot.ArraySchema<valibot.UnionSchema<[valibot.ObjectSchema<{
1166
+ readonly id: valibot.StringSchema<undefined>;
1167
+ readonly project: valibot.StringSchema<undefined>;
1168
+ readonly path: valibot.StringSchema<undefined>;
1169
+ readonly lastModified: valibot.StringSchema<undefined>;
1170
+ readonly type: valibot.LiteralSchema<"external", undefined>;
1171
+ readonly summary: valibot.ObjectSchema<{
1172
+ readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1173
+ readonly name: valibot.StringSchema<undefined>;
1174
+ readonly description: valibot.StringSchema<undefined>;
1175
+ }, undefined>;
1176
+ }, undefined>, valibot.ObjectSchema<{
1177
+ readonly id: valibot.StringSchema<undefined>;
1178
+ readonly project: valibot.StringSchema<undefined>;
1179
+ readonly lastModified: valibot.StringSchema<undefined>;
1180
+ readonly type: valibot.LiteralSchema<"internal", undefined>;
1181
+ readonly configName: valibot.StringSchema<undefined>;
1182
+ }, undefined>, valibot.ObjectSchema<{
1183
+ readonly id: valibot.StringSchema<undefined>;
1184
+ readonly project: valibot.StringSchema<undefined>;
1185
+ readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1186
+ }, undefined>], undefined>, undefined>, readonly []>;
1187
+ }, undefined>;
1188
+ type FileRepo = InferInput<typeof FileRepoValidator>;
1189
+ //#endregion
1190
+ //#region src/websocket.types.d.ts
1191
+ type WebSocketConnectionState = "connecting" | "connected" | "disconnected" | "error" | "reconnecting";
1192
+ interface WebSocketServerConfig {
1193
+ port?: number;
1194
+ host?: string;
1195
+ maxReconnectAttempts?: number;
1196
+ reconnectDelay?: number;
1197
+ }
1198
+ interface WebSocketServerEvents {
1199
+ connection: (ws: WebSocket, request: IncomingMessage$1) => void;
1200
+ message: (ws: WebSocket, data: Buffer) => void;
1201
+ close: (ws: WebSocket) => void;
1202
+ error: (ws: WebSocket, error: Error) => void;
1203
+ }
1204
+ interface WebSocketClientConfig {
1205
+ url?: string;
1206
+ maxReconnectAttempts?: number;
1207
+ reconnectDelay?: number;
1208
+ timeout?: number;
1209
+ }
1210
+ interface WebSocketClientEvents {
1211
+ open: () => void;
1212
+ message: (event: MessageEvent) => void;
1213
+ close: (event: CloseEvent) => void;
1214
+ error: (error: Event) => void;
1215
+ }
1216
+ interface WebSocketEvent {
1217
+ sender: string;
1218
+ timestamp?: number;
1219
+ }
1220
+ interface WebSocketRequestMessage {
1221
+ channel: Channels;
1222
+ requestId: RequestId$1;
1223
+ data: any;
1224
+ }
1225
+ interface WebSocketResponseMessage {
1226
+ type: "response";
1227
+ requestId: RequestId$1;
1228
+ events: Events<any>;
1229
+ }
1230
+ interface WebSocketErrorMessage {
1231
+ type: "error";
1232
+ requestId: RequestId$1;
1233
+ error: string;
1234
+ code?: string;
1235
+ }
1236
+ type WebSocketMessage = WebSocketRequestMessage | WebSocketResponseMessage | WebSocketErrorMessage;
1237
+ interface WebSocketConnectionInfo {
1238
+ id: string;
1239
+ state: WebSocketConnectionState;
1240
+ url: string;
1241
+ connectedAt?: Date;
1242
+ lastActivity?: Date;
1243
+ }
1244
+ interface Agent {
1245
+ id: string;
1246
+ name: string;
1247
+ isSelf: boolean;
1248
+ connectedAt?: number;
1249
+ }
1250
+ type WebSocketHandler<KEY extends Channels> = (event: WebSocketEvent, data: {
1251
+ value: Data$1<KEY>;
1252
+ send: WebSocketSendFunction<KEY>;
1253
+ }) => Promise<void>;
1254
+ type WebSocketSendFunction<KEY extends Channels> = (events: Events<KEY>) => Promise<void>;
1255
+ type WebSocketListener<KEY extends Channels> = (event: Events<KEY>) => Promise<void>;
1256
+ interface WebSocketAPI {
1257
+ execute: <KEY extends Channels>(channel: KEY, data?: Data$1<KEY>, listener?: WebSocketListener<KEY>) => Promise<End<KEY>>;
1258
+ send: <KEY extends Channels>(channel: KEY, data?: Data$1<KEY>) => Promise<End<KEY>>;
1259
+ on: <KEY extends Channels>(channel: KEY, listener: (event: WebSocketEvent, data: Events<KEY>) => void) => () => void;
1260
+ isConnected: () => boolean;
1261
+ disconnect: () => void;
1262
+ }
1263
+ interface WebSocketManager {
1264
+ connect: (url?: string) => Promise<void>;
1265
+ disconnect: () => void;
1266
+ send: <KEY extends Channels>(channel: KEY, data?: Data$1<KEY>) => Promise<End<KEY>>;
1267
+ isConnected: () => boolean;
1268
+ getConnectionState: () => WebSocketConnectionState;
1269
+ onStateChange: (callback: (state: WebSocketConnectionState) => void) => () => void;
1270
+ }
1271
+ declare class WebSocketError extends Error {
1272
+ code?: string;
1273
+ requestId?: RequestId$1;
1274
+ constructor(message: string, code?: string, requestId?: RequestId$1);
1275
+ }
1276
+ declare class WebSocketConnectionError extends WebSocketError {
1277
+ url?: string;
1278
+ constructor(message: string, url?: string);
1279
+ }
1280
+ declare class WebSocketTimeoutError extends WebSocketError {
1281
+ timeout: number;
1282
+ constructor(message: string, timeout: number, requestId?: RequestId$1);
1283
+ }
1284
+ declare const isWebSocketRequestMessage: (message: any) => message is WebSocketRequestMessage;
1285
+ declare const isWebSocketResponseMessage: (message: any) => message is WebSocketResponseMessage;
1286
+ declare const isWebSocketErrorMessage: (message: any) => message is WebSocketErrorMessage;
1287
+ type WebSocketMessageType<T extends Channels> = {
1288
+ channel: T;
1289
+ requestId: RequestId$1;
1290
+ data: Data$1<T>;
1291
+ };
1292
+ type WebSocketResponseType<T extends Channels> = {
1293
+ type: "response";
1294
+ requestId: RequestId$1;
1295
+ events: Events<T>;
1296
+ };
1016
1297
  //#endregion
1017
1298
  //#region src/build-history.d.ts
1018
1299
  interface ExecutionStep {
@@ -1045,6 +1326,7 @@ interface BuildHistoryEntry {
1045
1326
  pipelineId: string;
1046
1327
  projectName: string;
1047
1328
  projectPath: string;
1329
+ cachePath?: string;
1048
1330
  status: "running" | "completed" | "failed" | "cancelled";
1049
1331
  startTime: number;
1050
1332
  endTime?: number;
@@ -1084,11 +1366,6 @@ interface IBuildHistoryStorage {
1084
1366
  newestEntry?: number;
1085
1367
  numberOfPipelines: number;
1086
1368
  userDataPath: string;
1087
- retentionPolicy: {
1088
- enabled: boolean;
1089
- maxEntries: number;
1090
- maxAge: number;
1091
- };
1092
1369
  disk: {
1093
1370
  total: number;
1094
1371
  free: number;
@@ -1101,20 +1378,6 @@ interface IBuildHistoryStorage {
1101
1378
  };
1102
1379
  }>;
1103
1380
  }
1104
- interface RetentionPolicy {
1105
- enabled: boolean;
1106
- maxEntries: number;
1107
- maxAge: number;
1108
- maxSize: number;
1109
- keepFailedBuilds: boolean;
1110
- keepSuccessfulBuilds: boolean;
1111
- }
1112
- interface BuildHistoryConfig {
1113
- storagePath: string;
1114
- indexFileName: string;
1115
- entryFilePrefix: string;
1116
- retentionPolicy: RetentionPolicy;
1117
- }
1118
1381
  interface SubscriptionBenefit {
1119
1382
  id: string;
1120
1383
  name: string;
@@ -1156,6 +1419,49 @@ type EndEvent$1<DATA> = {
1156
1419
  };
1157
1420
  };
1158
1421
  type Presets = Record<string, PresetResult>;
1422
+ type StableDataReport = {
1423
+ sourceChannel: "Stable" | "Beta";
1424
+ targetChannel: "Stable" | "Beta";
1425
+ settingsExists: boolean;
1426
+ settingsVersion: string | null;
1427
+ settingsVersionTarget: string | null;
1428
+ settingsMtimeSource: number;
1429
+ settingsMtimeTarget: number;
1430
+ settingsImportable: boolean;
1431
+ connectionsExists: boolean;
1432
+ connectionsCount: number;
1433
+ connectionsVersion: string | null;
1434
+ connectionsVersionTarget: string | null;
1435
+ connectionsMtimeSource: number;
1436
+ connectionsMtimeTarget: number;
1437
+ connectionsImportable: boolean;
1438
+ projectsExists: boolean;
1439
+ projectsVersion: string | null;
1440
+ projectsVersionTarget: string | null;
1441
+ projectsMtimeSource: number;
1442
+ projectsMtimeTarget: number;
1443
+ projectsImportable: boolean;
1444
+ projects: Array<{
1445
+ id: string;
1446
+ name: string;
1447
+ description: string;
1448
+ pipelines: Array<{
1449
+ id: string;
1450
+ name: string;
1451
+ description: string;
1452
+ type: "internal" | "external" | "pipelab-cloud";
1453
+ lastModifiedStable?: string;
1454
+ lastModifiedBeta?: string;
1455
+ existsInBeta: boolean;
1456
+ }>;
1457
+ }>;
1458
+ };
1459
+ type MigrationOptions = {
1460
+ migrateSettings: boolean;
1461
+ migrateConnections: boolean;
1462
+ selectedProjects: string[];
1463
+ selectedPipelines: string[];
1464
+ };
1159
1465
  type IpcDefinition = {
1160
1466
  "fs:read": [{
1161
1467
  path: string;
@@ -1218,29 +1524,48 @@ type IpcDefinition = {
1218
1524
  userData: string;
1219
1525
  };
1220
1526
  }>];
1221
- "config:load": [{
1222
- config: string;
1223
- }, EndEvent$1<{
1224
- result: any;
1225
- }>];
1226
- "config:save": [{
1227
- data: any;
1228
- config: string;
1229
- }, EndEvent$1<{
1230
- result: "ok";
1231
- }>];
1232
- "config:reset": [{
1233
- config: string;
1527
+ "settings:load": [void, EndEvent$1<AppConfig>];
1528
+ "settings:save": [{
1529
+ data: AppConfig;
1530
+ }, EndEvent$1<"ok">];
1531
+ "settings:reset": [{
1234
1532
  key: string;
1235
- }, EndEvent$1<{
1236
- result: "ok";
1237
- }>];
1238
- "config:delete": [{
1239
- config: string;
1240
- }, EndEvent$1<{
1241
- result: "ok";
1242
- }>];
1243
- "action:cancel": [void, EndEvent$1<{
1533
+ }, EndEvent$1<"ok">];
1534
+ "connections:load": [void, EndEvent$1<ConnectionsConfig>];
1535
+ "connections:save": [{
1536
+ data: ConnectionsConfig;
1537
+ }, EndEvent$1<"ok">];
1538
+ "connections:reset": [{
1539
+ key: string;
1540
+ }, EndEvent$1<"ok">];
1541
+ "projects:load": [void, EndEvent$1<FileRepo>];
1542
+ "projects:save": [{
1543
+ data: FileRepo;
1544
+ }, EndEvent$1<"ok">];
1545
+ "projects:reset": [{
1546
+ key: string;
1547
+ }, EndEvent$1<"ok">];
1548
+ "pipeline:load-by-name": [{
1549
+ name: string;
1550
+ }, EndEvent$1<SavedFile>];
1551
+ "pipeline:load-by-path": [{
1552
+ path: string;
1553
+ }, EndEvent$1<SavedFile>];
1554
+ "pipeline:save-by-name": [{
1555
+ name: string;
1556
+ data: string;
1557
+ }, EndEvent$1<"ok">];
1558
+ "pipeline:save-by-path": [{
1559
+ path: string;
1560
+ data: string;
1561
+ }, EndEvent$1<"ok">];
1562
+ "pipeline:delete-by-name": [{
1563
+ name: string;
1564
+ }, EndEvent$1<"ok">];
1565
+ "pipeline:delete-by-path": [{
1566
+ path: string;
1567
+ }, EndEvent$1<"ok">];
1568
+ "action:cancel": [void, EndEvent$1<{
1244
1569
  result: "ok" | "ko";
1245
1570
  }>];
1246
1571
  "build-history:save": [{
@@ -1284,11 +1609,6 @@ type IpcDefinition = {
1284
1609
  oldestEntry?: number;
1285
1610
  newestEntry?: number;
1286
1611
  }>];
1287
- "build-history:configure": [{
1288
- config: Partial<BuildHistoryConfig>;
1289
- }, EndEvent$1<{
1290
- result: "ok" | "ko";
1291
- }>];
1292
1612
  "agents:get": [void, EndEvent$1<{
1293
1613
  agents: Agent[];
1294
1614
  }>];
@@ -1337,436 +1657,149 @@ type IpcDefinition = {
1337
1657
  email: string;
1338
1658
  }, EndEvent$1<{
1339
1659
  error: any | null;
1340
- }>];
1341
- "auth:invoke": [{
1342
- name: string;
1343
- options?: any;
1344
- }, EndEvent$1<{
1345
- data: any | null;
1346
- error: any | null;
1347
- }>];
1348
- "agent:version:get": [void, EndEvent$1<{
1349
- version: string;
1350
- }>];
1351
- "startup:progress": [void, {
1352
- type: "progress";
1353
- data: {
1354
- message: string;
1355
- };
1356
- } | {
1357
- type: "ready";
1358
- } | {
1359
- type: "done";
1360
- }];
1361
- "plugin:loaded": [void, {
1362
- plugin: RendererPluginDefinition;
1363
- }];
1364
- "plugin:search": [{
1365
- query: string;
1366
- }, EndEvent$1<{
1367
- results: Array<{
1368
- name: string;
1369
- version: string;
1370
- description?: string;
1371
- keywords?: string[];
1372
- date?: string;
1373
- }>;
1374
- }>];
1375
- "plugin:get-details": [{
1376
- packageName: string;
1377
- }, EndEvent$1<{
1378
- name: string;
1379
- latestVersion: string;
1380
- versions: string[];
1381
- description?: string;
1382
- }>];
1383
- "plugin:install": [{
1384
- packageName: string;
1385
- version: string;
1386
- }, EndEvent$1<{
1387
- result: "ok";
1388
- }>];
1389
- "plugin:uninstall": [{
1390
- packageName: string;
1391
- }, EndEvent$1<{
1392
- result: "ok";
1393
- }>];
1394
- "plugin:list-installed": [void, EndEvent$1<{
1395
- installed: Array<{
1396
- name: string;
1397
- version: string;
1398
- description?: string;
1399
- }>;
1400
- }>];
1401
- "plugin:ensure-loaded": [{
1402
- plugins: Record<string, string>;
1403
- }, EndEvent$1<{
1404
- loaded: string[];
1405
- failed: string[];
1406
- }>];
1407
- };
1408
- type Channels = keyof IpcDefinition;
1409
- declare const ShellChannels: Channels[];
1410
- type Data$1<KEY extends Channels> = IpcDefinition[KEY][0];
1411
- type Events<KEY extends Channels> = IpcDefinition[KEY][1];
1412
- type End<KEY extends Channels> = Extract<IpcDefinition[KEY][1], {
1413
- type: "end";
1414
- }>["data"];
1415
- type IpcMessage = {
1416
- requestId: RequestId$1;
1417
- data: any;
1418
- };
1419
- type RequestId$1 = Tagged<string, "request-id">;
1420
- //#endregion
1421
- //#region src/ipc.types.d.ts
1422
- type UpdateStatus = "update-available" | "update-downloaded" | "checking-for-update" | "update-not-available" | "error";
1423
- type IpcEvent<TYPE extends string, DATA> = {
1424
- type: TYPE;
1425
- data: DATA;
1426
- };
1427
- type EndEvent<DATA> = {
1428
- type: "end";
1429
- data: {
1430
- type: "success";
1431
- result: DATA;
1432
- } | {
1433
- type: "error";
1434
- ipcError: string;
1435
- };
1436
- };
1437
- type IpcDefinition$1 = {
1438
- "dialog:alert": [{
1439
- message: string;
1440
- buttons?: {
1441
- title: string;
1442
- value: string;
1443
- }[];
1444
- }, EndEvent<{
1445
- answer: string;
1446
- }>];
1447
- "dialog:prompt": [{
1448
- message: string;
1449
- buttons?: {
1450
- title: string;
1451
- value: string;
1452
- }[];
1453
- }, EndEvent<{
1454
- answer: string;
1455
- }>];
1456
- "log:message": [ILogObjMeta, EndEvent<void>];
1457
- "update:set-status": [{
1458
- status: UpdateStatus;
1459
- downloadUrl?: string;
1460
- version?: string;
1461
- }, EndEvent<void>];
1462
- };
1463
- type RendererChannels = keyof IpcDefinition$1;
1464
- type RendererData<KEY extends RendererChannels> = IpcDefinition$1[KEY][0];
1465
- type RendererEvents<KEY extends RendererChannels> = IpcDefinition$1[KEY][1];
1466
- type RendererEnd<KEY extends RendererChannels> = Extract<IpcDefinition$1[KEY][1], {
1467
- type: "end";
1468
- }>["data"];
1469
- type RendererMessage = {
1470
- requestId: RequestId;
1471
- data: any;
1472
- };
1473
- type RequestId = Tagged<string, "request-id">;
1474
- type HandleListenerRendererSendFn<KEY extends RendererChannels> = (events: RendererEvents<KEY>) => void;
1475
- type HandleListenerRenderer<KEY extends RendererChannels> = (event: any, data: {
1476
- value: RendererData<KEY>;
1477
- send: HandleListenerRendererSendFn<KEY>;
1478
- }) => Promise<void>;
1479
- //#endregion
1480
- //#region src/config/projects-definition.d.ts
1481
- declare const FileRepoValidatorV1: valibot.ObjectSchema<{
1482
- readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1483
- readonly data: valibot.OptionalSchema<valibot.RecordSchema<valibot.StringSchema<undefined>, valibot.UnionSchema<[valibot.ObjectSchema<{
1484
- readonly id: valibot.StringSchema<undefined>;
1485
- readonly project: valibot.StringSchema<undefined>;
1486
- readonly path: valibot.StringSchema<undefined>;
1487
- readonly lastModified: valibot.StringSchema<undefined>;
1488
- readonly type: valibot.LiteralSchema<"external", undefined>;
1489
- readonly summary: valibot.ObjectSchema<{
1490
- readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1491
- readonly name: valibot.StringSchema<undefined>;
1492
- readonly description: valibot.StringSchema<undefined>;
1493
- }, undefined>;
1494
- }, undefined>, valibot.ObjectSchema<{
1495
- readonly id: valibot.StringSchema<undefined>;
1496
- readonly project: valibot.StringSchema<undefined>;
1497
- readonly lastModified: valibot.StringSchema<undefined>;
1498
- readonly type: valibot.LiteralSchema<"internal", undefined>;
1499
- readonly configName: valibot.StringSchema<undefined>;
1500
- }, undefined>, valibot.ObjectSchema<{
1501
- readonly id: valibot.StringSchema<undefined>;
1502
- readonly project: valibot.StringSchema<undefined>;
1503
- readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1504
- }, undefined>], undefined>, undefined>, {}>;
1505
- }, undefined>;
1506
- declare const FileRepoProjectValidatorV2: valibot.ObjectSchema<{
1507
- readonly id: valibot.StringSchema<undefined>;
1508
- readonly name: valibot.StringSchema<undefined>;
1509
- readonly description: valibot.StringSchema<undefined>;
1510
- }, undefined>;
1511
- declare const FileRepoValidatorV2: valibot.ObjectSchema<{
1512
- readonly version: valibot.LiteralSchema<"2.0.0", undefined>;
1513
- readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
1514
- readonly id: valibot.StringSchema<undefined>;
1515
- readonly name: valibot.StringSchema<undefined>;
1516
- readonly description: valibot.StringSchema<undefined>;
1517
- }, undefined>, undefined>;
1518
- readonly pipelines: valibot.OptionalSchema<valibot.ArraySchema<valibot.UnionSchema<[valibot.ObjectSchema<{
1519
- readonly id: valibot.StringSchema<undefined>;
1520
- readonly project: valibot.StringSchema<undefined>;
1521
- readonly path: valibot.StringSchema<undefined>;
1522
- readonly lastModified: valibot.StringSchema<undefined>;
1523
- readonly type: valibot.LiteralSchema<"external", undefined>;
1524
- readonly summary: valibot.ObjectSchema<{
1525
- readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1526
- readonly name: valibot.StringSchema<undefined>;
1527
- readonly description: valibot.StringSchema<undefined>;
1528
- }, undefined>;
1529
- }, undefined>, valibot.ObjectSchema<{
1530
- readonly id: valibot.StringSchema<undefined>;
1531
- readonly project: valibot.StringSchema<undefined>;
1532
- readonly lastModified: valibot.StringSchema<undefined>;
1533
- readonly type: valibot.LiteralSchema<"internal", undefined>;
1534
- readonly configName: valibot.StringSchema<undefined>;
1535
- }, undefined>, valibot.ObjectSchema<{
1536
- readonly id: valibot.StringSchema<undefined>;
1537
- readonly project: valibot.StringSchema<undefined>;
1538
- readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1539
- }, undefined>], undefined>, undefined>, readonly []>;
1540
- }, undefined>;
1541
- type FileRepoV1 = InferInput<typeof FileRepoValidatorV1>;
1542
- type FileRepoV2 = InferInput<typeof FileRepoValidatorV2>;
1543
- declare const FileRepoValidator: valibot.ObjectSchema<{
1544
- readonly version: valibot.LiteralSchema<"2.0.0", undefined>;
1545
- readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
1546
- readonly id: valibot.StringSchema<undefined>;
1547
- readonly name: valibot.StringSchema<undefined>;
1548
- readonly description: valibot.StringSchema<undefined>;
1549
- }, undefined>, undefined>;
1550
- readonly pipelines: valibot.OptionalSchema<valibot.ArraySchema<valibot.UnionSchema<[valibot.ObjectSchema<{
1551
- readonly id: valibot.StringSchema<undefined>;
1552
- readonly project: valibot.StringSchema<undefined>;
1553
- readonly path: valibot.StringSchema<undefined>;
1554
- readonly lastModified: valibot.StringSchema<undefined>;
1555
- readonly type: valibot.LiteralSchema<"external", undefined>;
1556
- readonly summary: valibot.ObjectSchema<{
1557
- readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
1558
- readonly name: valibot.StringSchema<undefined>;
1559
- readonly description: valibot.StringSchema<undefined>;
1560
- }, undefined>;
1561
- }, undefined>, valibot.ObjectSchema<{
1562
- readonly id: valibot.StringSchema<undefined>;
1563
- readonly project: valibot.StringSchema<undefined>;
1564
- readonly lastModified: valibot.StringSchema<undefined>;
1565
- readonly type: valibot.LiteralSchema<"internal", undefined>;
1566
- readonly configName: valibot.StringSchema<undefined>;
1567
- }, undefined>, valibot.ObjectSchema<{
1568
- readonly id: valibot.StringSchema<undefined>;
1569
- readonly project: valibot.StringSchema<undefined>;
1570
- readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
1571
- }, undefined>], undefined>, undefined>, readonly []>;
1572
- }, undefined>;
1573
- type FileRepo = InferInput<typeof FileRepoValidator>;
1574
- //#endregion
1575
- //#region src/config.schema.d.ts
1576
- declare const createVersionSchema: <T extends GenericSchema<any, any>>(schema: T) => T;
1577
- declare const AppSettingsValidatorV1: valibot.ObjectSchema<{
1578
- readonly cacheFolder: valibot.StringSchema<undefined>;
1579
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1580
- readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1581
- }, undefined>;
1582
- declare const AppSettingsValidatorV2: valibot.ObjectSchema<{
1583
- readonly cacheFolder: valibot.StringSchema<undefined>;
1584
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1585
- readonly version: valibot.LiteralSchema<"2.0.0", undefined>;
1586
- }, undefined>;
1587
- declare const AppSettingsValidatorV3: valibot.ObjectSchema<{
1588
- readonly cacheFolder: valibot.StringSchema<undefined>;
1589
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1590
- readonly version: valibot.LiteralSchema<"3.0.0", undefined>;
1591
- readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
1592
- }, undefined>;
1593
- declare const AppSettingsValidatorV4: valibot.ObjectSchema<{
1594
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1595
- readonly version: valibot.LiteralSchema<"4.0.0", undefined>;
1596
- readonly cacheFolder: valibot.StringSchema<undefined>;
1597
- readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
1598
- readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1599
- }, undefined>;
1600
- declare const AppSettingsValidatorV5: valibot.ObjectSchema<{
1601
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1602
- readonly version: valibot.LiteralSchema<"5.0.0", undefined>;
1603
- readonly cacheFolder: valibot.StringSchema<undefined>;
1604
- readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
1605
- readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1606
- readonly tours: valibot.ObjectSchema<{
1607
- readonly dashboard: valibot.ObjectSchema<{
1608
- readonly step: valibot.NumberSchema<undefined>;
1609
- readonly completed: valibot.BooleanSchema<undefined>;
1610
- }, undefined>;
1611
- readonly editor: valibot.ObjectSchema<{
1612
- readonly step: valibot.NumberSchema<undefined>;
1613
- readonly completed: valibot.BooleanSchema<undefined>;
1614
- }, undefined>;
1615
- }, undefined>;
1616
- }, undefined>;
1617
- declare const AppSettingsValidatorV6: valibot.ObjectSchema<{
1618
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1619
- readonly version: valibot.LiteralSchema<"6.0.0", undefined>;
1620
- readonly cacheFolder: valibot.StringSchema<undefined>;
1621
- readonly clearTemporaryFoldersOnPipelineEnd: valibot.BooleanSchema<undefined>;
1622
- readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1623
- readonly tours: valibot.ObjectSchema<{
1624
- readonly dashboard: valibot.ObjectSchema<{
1625
- readonly step: valibot.NumberSchema<undefined>;
1626
- readonly completed: valibot.BooleanSchema<undefined>;
1627
- }, undefined>;
1628
- readonly editor: valibot.ObjectSchema<{
1629
- readonly step: valibot.NumberSchema<undefined>;
1630
- readonly completed: valibot.BooleanSchema<undefined>;
1631
- }, undefined>;
1632
- }, undefined>;
1633
- readonly autosave: valibot.BooleanSchema<undefined>;
1634
- }, undefined>;
1635
- declare const AppSettingsValidatorV7: valibot.ObjectSchema<{
1636
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1637
- readonly version: valibot.LiteralSchema<"7.0.0", undefined>;
1638
- readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1639
- readonly tours: valibot.ObjectSchema<{
1640
- readonly dashboard: valibot.ObjectSchema<{
1641
- readonly step: valibot.NumberSchema<undefined>;
1642
- readonly completed: valibot.BooleanSchema<undefined>;
1643
- }, undefined>;
1644
- readonly editor: valibot.ObjectSchema<{
1645
- readonly step: valibot.NumberSchema<undefined>;
1646
- readonly completed: valibot.BooleanSchema<undefined>;
1647
- }, undefined>;
1648
- }, undefined>;
1649
- readonly autosave: valibot.BooleanSchema<undefined>;
1650
- readonly agents: valibot.ArraySchema<valibot.ObjectSchema<{
1651
- readonly id: valibot.StringSchema<undefined>;
1652
- readonly name: valibot.StringSchema<undefined>;
1653
- readonly url: valibot.StringSchema<undefined>;
1654
- }, undefined>, undefined>;
1655
- readonly buildHistory: valibot.ObjectSchema<{
1656
- readonly retentionPolicy: valibot.ObjectSchema<{
1657
- readonly enabled: valibot.BooleanSchema<undefined>;
1658
- readonly maxEntries: valibot.NumberSchema<undefined>;
1659
- readonly maxAge: valibot.NumberSchema<undefined>;
1660
- }, undefined>;
1661
- }, undefined>;
1662
- }, undefined>;
1663
- declare const AppSettingsValidatorV8: valibot.ObjectSchema<{
1664
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1665
- readonly version: valibot.LiteralSchema<"8.0.0", undefined>;
1666
- readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1667
- readonly tours: valibot.ObjectSchema<{
1668
- readonly dashboard: valibot.ObjectSchema<{
1669
- readonly step: valibot.NumberSchema<undefined>;
1670
- readonly completed: valibot.BooleanSchema<undefined>;
1671
- }, undefined>;
1672
- readonly editor: valibot.ObjectSchema<{
1673
- readonly step: valibot.NumberSchema<undefined>;
1674
- readonly completed: valibot.BooleanSchema<undefined>;
1675
- }, undefined>;
1676
- }, undefined>;
1677
- readonly autosave: valibot.BooleanSchema<undefined>;
1678
- readonly agents: valibot.ArraySchema<valibot.ObjectSchema<{
1679
- readonly id: valibot.StringSchema<undefined>;
1680
- readonly name: valibot.StringSchema<undefined>;
1681
- readonly url: valibot.StringSchema<undefined>;
1682
- }, undefined>, undefined>;
1683
- readonly buildHistory: valibot.ObjectSchema<{
1684
- readonly retentionPolicy: valibot.ObjectSchema<{
1685
- readonly enabled: valibot.BooleanSchema<undefined>;
1686
- readonly maxEntries: valibot.NumberSchema<undefined>;
1687
- readonly maxAge: valibot.NumberSchema<undefined>;
1688
- }, undefined>;
1689
- }, undefined>;
1690
- readonly plugins: valibot.ArraySchema<valibot.ObjectSchema<{
1691
- readonly name: valibot.StringSchema<undefined>;
1692
- readonly enabled: valibot.BooleanSchema<undefined>;
1693
- readonly description: valibot.StringSchema<undefined>;
1694
- }, undefined>, undefined>;
1695
- readonly isInternalMigrationBannerClosed: valibot.OptionalSchema<valibot.BooleanSchema<undefined>, false>;
1696
- }, undefined>;
1697
- declare const ConnectionValidator: valibot.LooseObjectSchema<{
1698
- readonly id: valibot.StringSchema<undefined>;
1699
- readonly pluginName: valibot.StringSchema<undefined>;
1700
- readonly name: valibot.StringSchema<undefined>;
1701
- readonly createdAt: valibot.StringSchema<undefined>;
1702
- readonly isDefault: valibot.BooleanSchema<undefined>;
1703
- }, undefined>;
1704
- declare const ConnectionsValidatorV1: valibot.ObjectSchema<{
1705
- readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1706
- readonly connections: valibot.ArraySchema<valibot.LooseObjectSchema<{
1707
- readonly id: valibot.StringSchema<undefined>;
1708
- readonly pluginName: valibot.StringSchema<undefined>;
1709
- readonly name: valibot.StringSchema<undefined>;
1710
- readonly createdAt: valibot.StringSchema<undefined>;
1711
- readonly isDefault: valibot.BooleanSchema<undefined>;
1712
- }, undefined>, undefined>;
1713
- }, undefined>;
1714
- type Connection = InferInput<typeof ConnectionValidator>;
1715
- type ConnectionsConfigV1 = InferInput<typeof ConnectionsValidatorV1>;
1716
- type ConnectionsConfig = ConnectionsConfigV1;
1717
- declare const ConnectionsValidator: valibot.ObjectSchema<{
1718
- readonly version: valibot.LiteralSchema<"1.0.0", undefined>;
1719
- readonly connections: valibot.ArraySchema<valibot.LooseObjectSchema<{
1720
- readonly id: valibot.StringSchema<undefined>;
1721
- readonly pluginName: valibot.StringSchema<undefined>;
1722
- readonly name: valibot.StringSchema<undefined>;
1723
- readonly createdAt: valibot.StringSchema<undefined>;
1724
- readonly isDefault: valibot.BooleanSchema<undefined>;
1725
- }, undefined>, undefined>;
1726
- }, undefined>;
1727
- type AppConfigV1 = InferInput<typeof AppSettingsValidatorV1>;
1728
- type AppConfigV2 = InferInput<typeof AppSettingsValidatorV2>;
1729
- type AppConfigV3 = InferInput<typeof AppSettingsValidatorV3>;
1730
- type AppConfigV4 = InferInput<typeof AppSettingsValidatorV4>;
1731
- type AppConfigV5 = InferInput<typeof AppSettingsValidatorV5>;
1732
- type AppConfigV6 = InferInput<typeof AppSettingsValidatorV6>;
1733
- type AppConfigV7 = InferInput<typeof AppSettingsValidatorV7>;
1734
- type AppConfigV8 = InferInput<typeof AppSettingsValidatorV8>;
1735
- type AppConfig = AppConfigV8;
1736
- declare const AppSettingsValidator: valibot.ObjectSchema<{
1737
- readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
1738
- readonly version: valibot.LiteralSchema<"8.0.0", undefined>;
1739
- readonly locale: valibot.UnionSchema<[valibot.LiteralSchema<"en-US", undefined>, valibot.LiteralSchema<"fr-FR", undefined>, valibot.LiteralSchema<"pt-BR", undefined>, valibot.LiteralSchema<"zh-CN", undefined>, valibot.LiteralSchema<"es-ES", undefined>, valibot.LiteralSchema<"de-DE", undefined>], undefined>;
1740
- readonly tours: valibot.ObjectSchema<{
1741
- readonly dashboard: valibot.ObjectSchema<{
1742
- readonly step: valibot.NumberSchema<undefined>;
1743
- readonly completed: valibot.BooleanSchema<undefined>;
1744
- }, undefined>;
1745
- readonly editor: valibot.ObjectSchema<{
1746
- readonly step: valibot.NumberSchema<undefined>;
1747
- readonly completed: valibot.BooleanSchema<undefined>;
1748
- }, undefined>;
1749
- }, undefined>;
1750
- readonly autosave: valibot.BooleanSchema<undefined>;
1751
- readonly agents: valibot.ArraySchema<valibot.ObjectSchema<{
1752
- readonly id: valibot.StringSchema<undefined>;
1753
- readonly name: valibot.StringSchema<undefined>;
1754
- readonly url: valibot.StringSchema<undefined>;
1755
- }, undefined>, undefined>;
1756
- readonly buildHistory: valibot.ObjectSchema<{
1757
- readonly retentionPolicy: valibot.ObjectSchema<{
1758
- readonly enabled: valibot.BooleanSchema<undefined>;
1759
- readonly maxEntries: valibot.NumberSchema<undefined>;
1760
- readonly maxAge: valibot.NumberSchema<undefined>;
1761
- }, undefined>;
1762
- }, undefined>;
1763
- readonly plugins: valibot.ArraySchema<valibot.ObjectSchema<{
1764
- readonly name: valibot.StringSchema<undefined>;
1765
- readonly enabled: valibot.BooleanSchema<undefined>;
1766
- readonly description: valibot.StringSchema<undefined>;
1767
- }, undefined>, undefined>;
1768
- readonly isInternalMigrationBannerClosed: valibot.OptionalSchema<valibot.BooleanSchema<undefined>, false>;
1769
- }, undefined>;
1660
+ }>];
1661
+ "auth:invoke": [{
1662
+ name: string;
1663
+ options?: any;
1664
+ }, EndEvent$1<{
1665
+ data: any | null;
1666
+ error: any | null;
1667
+ }>];
1668
+ "agent:version:get": [void, EndEvent$1<{
1669
+ version: string;
1670
+ }>];
1671
+ "startup:progress": [void, {
1672
+ type: "progress";
1673
+ data: {
1674
+ message: string;
1675
+ };
1676
+ } | {
1677
+ type: "ready";
1678
+ } | {
1679
+ type: "done";
1680
+ }];
1681
+ "plugin:loaded": [void, {
1682
+ plugin: RendererPluginDefinition;
1683
+ }];
1684
+ "plugin:search": [{
1685
+ query: string;
1686
+ }, EndEvent$1<{
1687
+ results: Array<{
1688
+ name: string;
1689
+ version: string;
1690
+ description?: string;
1691
+ keywords?: string[];
1692
+ date?: string;
1693
+ }>;
1694
+ }>];
1695
+ "plugin:get-details": [{
1696
+ packageName: string;
1697
+ }, EndEvent$1<{
1698
+ name: string;
1699
+ latestVersion: string;
1700
+ versions: string[];
1701
+ description?: string;
1702
+ }>];
1703
+ "plugin:install": [{
1704
+ packageName: string;
1705
+ version: string;
1706
+ }, EndEvent$1<{
1707
+ result: "ok";
1708
+ }>];
1709
+ "plugin:uninstall": [{
1710
+ packageName: string;
1711
+ }, EndEvent$1<{
1712
+ result: "ok";
1713
+ }>];
1714
+ "plugin:list-installed": [void, EndEvent$1<{
1715
+ installed: Array<{
1716
+ name: string;
1717
+ version: string;
1718
+ description?: string;
1719
+ }>;
1720
+ }>];
1721
+ "plugin:ensure-loaded": [{
1722
+ plugins: Record<string, string>;
1723
+ }, EndEvent$1<{
1724
+ loaded: string[];
1725
+ failed: string[];
1726
+ }>];
1727
+ "migration:scan-stable": [void, EndEvent$1<StableDataReport>];
1728
+ "migration:perform": [MigrationOptions, EndEvent$1<{
1729
+ result: "ok";
1730
+ }>];
1731
+ };
1732
+ type Channels = keyof IpcDefinition;
1733
+ declare const ShellChannels: Channels[];
1734
+ type Data$1<KEY extends Channels> = IpcDefinition[KEY][0];
1735
+ type Events<KEY extends Channels> = IpcDefinition[KEY][1];
1736
+ type End<KEY extends Channels> = Extract<IpcDefinition[KEY][1], {
1737
+ type: "end";
1738
+ }>["data"];
1739
+ type IpcMessage = {
1740
+ requestId: RequestId$1;
1741
+ data: any;
1742
+ };
1743
+ type RequestId$1 = Tagged<string, "request-id">;
1744
+ //#endregion
1745
+ //#region src/ipc.types.d.ts
1746
+ type UpdateStatus = "update-available" | "update-downloaded" | "checking-for-update" | "update-not-available" | "error";
1747
+ type IpcEvent<TYPE extends string, DATA> = {
1748
+ type: TYPE;
1749
+ data: DATA;
1750
+ };
1751
+ type EndEvent<DATA> = {
1752
+ type: "end";
1753
+ data: {
1754
+ type: "success";
1755
+ result: DATA;
1756
+ } | {
1757
+ type: "error";
1758
+ ipcError: string;
1759
+ };
1760
+ };
1761
+ type IpcDefinition$1 = {
1762
+ "dialog:alert": [{
1763
+ message: string;
1764
+ buttons?: {
1765
+ title: string;
1766
+ value: string;
1767
+ }[];
1768
+ }, EndEvent<{
1769
+ answer: string;
1770
+ }>];
1771
+ "dialog:prompt": [{
1772
+ message: string;
1773
+ buttons?: {
1774
+ title: string;
1775
+ value: string;
1776
+ }[];
1777
+ }, EndEvent<{
1778
+ answer: string;
1779
+ }>];
1780
+ "log:message": [ILogObjMeta, EndEvent<void>];
1781
+ "update:set-status": [{
1782
+ status: UpdateStatus;
1783
+ downloadUrl?: string;
1784
+ version?: string;
1785
+ }, EndEvent<void>];
1786
+ };
1787
+ type RendererChannels = keyof IpcDefinition$1;
1788
+ type RendererData<KEY extends RendererChannels> = IpcDefinition$1[KEY][0];
1789
+ type RendererEvents<KEY extends RendererChannels> = IpcDefinition$1[KEY][1];
1790
+ type RendererEnd<KEY extends RendererChannels> = Extract<IpcDefinition$1[KEY][1], {
1791
+ type: "end";
1792
+ }>["data"];
1793
+ type RendererMessage = {
1794
+ requestId: RequestId;
1795
+ data: any;
1796
+ };
1797
+ type RequestId = Tagged<string, "request-id">;
1798
+ type HandleListenerRendererSendFn<KEY extends RendererChannels> = (events: RendererEvents<KEY>) => void;
1799
+ type HandleListenerRenderer<KEY extends RendererChannels> = (event: any, data: {
1800
+ value: RendererData<KEY>;
1801
+ send: HandleListenerRendererSendFn<KEY>;
1802
+ }) => Promise<void>;
1770
1803
  //#endregion
1771
1804
  //#region src/database.types.d.ts
1772
1805
  type Json = string | number | boolean | null | {
@@ -1903,13 +1936,6 @@ declare let settings$5: {
1903
1936
  "restart-dashboard-tour": string;
1904
1937
  "restart-editor-tour": string;
1905
1938
  "tour-reset-success": string;
1906
- retentionPolicy: string;
1907
- retentionPolicyDescription: string;
1908
- retentionEnabled: string;
1909
- retentionMaxEntries: string;
1910
- retentionMaxEntriesDescription: string;
1911
- retentionMaxAge: string;
1912
- retentionMaxAgeDescription: string;
1913
1939
  "storage-pipelab": string;
1914
1940
  "storage-other": string;
1915
1941
  "storage-free": string;
@@ -1919,14 +1945,11 @@ declare let settings$5: {
1919
1945
  };
1920
1946
  declare namespace headers$5 {
1921
1947
  let dashboard: string;
1922
- let scenarios: string;
1948
+ let pipelines: string;
1923
1949
  let editor: string;
1924
1950
  let billing: string;
1925
1951
  let team: string;
1926
1952
  }
1927
- declare let navigation: {
1928
- "build-history": string;
1929
- };
1930
1953
  declare namespace base$5 {
1931
1954
  export let close: string;
1932
1955
  export let save: string;
@@ -1939,11 +1962,13 @@ declare namespace base$5 {
1939
1962
  export let ok: string;
1940
1963
  export let add: string;
1941
1964
  export let search: string;
1965
+ export let success: string;
1966
+ export let error: string;
1942
1967
  }
1943
1968
  declare let editor_1$5: {
1944
1969
  "invalid-file-content": string;
1945
1970
  "welcome-back": string;
1946
- "please-log-in-to-run-a-scenario": string;
1971
+ "please-log-in-to-run-a-pipeline": string;
1947
1972
  "execution-done": string;
1948
1973
  "your-project-has-been-executed-successfully": string;
1949
1974
  "execution-failed": string;
@@ -1972,7 +1997,9 @@ declare let home$5: {
1972
1997
  "choose-a-new-path": string;
1973
1998
  "invalid-file-type": string;
1974
1999
  "create-project": string;
2000
+ "create-pipeline": string;
1975
2001
  "duplicate-project": string;
2002
+ "duplicate-pipeline": string;
1976
2003
  "project-name": string;
1977
2004
  "new-project": string;
1978
2005
  "new-pipeline": string;
@@ -2008,14 +2035,18 @@ declare let home$5: {
2008
2035
  "migrate-to-internal": string;
2009
2036
  "only-internal-supported-notice": string;
2010
2037
  "import-pipeline": string;
2038
+ "import-from-stable": string;
2039
+ "import-pipeline-file": string;
2011
2040
  "import-success": string;
2012
2041
  "failed-to-read-file": string;
2042
+ "export-pipeline": string;
2043
+ "export-success": string;
2044
+ "export-failed": string;
2013
2045
  };
2014
- declare namespace scenarios_1$5 {
2015
- let scenarios_2: string;
2016
- export { scenarios_2 as scenarios };
2046
+ declare namespace pipelines_1$5 {
2047
+ let title: string;
2017
2048
  }
2018
- declare let tour: {
2049
+ declare let tour$5: {
2019
2050
  "start-tour": string;
2020
2051
  "projects-list-title": string;
2021
2052
  "projects-list-description": string;
@@ -2037,12 +2068,14 @@ declare let tour: {
2037
2068
  "editor-close-description": string;
2038
2069
  };
2039
2070
  declare namespace __json_default_export$1 {
2040
- export { settings$5 as settings, headers$5 as headers, navigation, base$5 as base, home$5 as home, scenarios_1$5 as scenarios_1, tour, editor_1$5 as editor, scenarios_1$5 as scenarios };
2071
+ export { settings$5 as settings, headers$5 as headers, base$5 as base, home$5 as home, pipelines_1$5 as pipelines_1, tour$5 as tour, editor_1$5 as editor, pipelines_1$5 as pipelines };
2041
2072
  }
2042
2073
  //#endregion
2043
2074
  //#region src/i18n/fr_FR.json.d.ts
2044
2075
  declare let settings$4: {
2045
2076
  darkTheme: string;
2077
+ autosave: string;
2078
+ autosaveDescription: string;
2046
2079
  language: string;
2047
2080
  languageOptions: {
2048
2081
  "en-US": string;
@@ -2063,8 +2096,6 @@ declare let settings$4: {
2063
2096
  "community-plugins": string;
2064
2097
  versions: string;
2065
2098
  };
2066
- clearTempFolders: string;
2067
- clearTempFoldersDescription: string;
2068
2099
  "pipeline-cache-folder": string;
2069
2100
  "enter-or-browse-for-a-folder": string;
2070
2101
  browse: string;
@@ -2078,10 +2109,19 @@ declare let settings$4: {
2078
2109
  "failed-to-clear-cache-error-message": string;
2079
2110
  "failed-to-reset-cache-folder-error-message": string;
2080
2111
  "select-cache-folder": string;
2112
+ "restart-dashboard-tour": string;
2113
+ "restart-editor-tour": string;
2114
+ "tour-reset-success": string;
2115
+ "storage-pipelab": string;
2116
+ "storage-other": string;
2117
+ "storage-free": string;
2118
+ "disk-usage": string;
2119
+ free: string;
2120
+ other: string;
2081
2121
  };
2082
2122
  declare namespace headers$4 {
2083
2123
  let dashboard: string;
2084
- let scenarios: string;
2124
+ let pipelines: string;
2085
2125
  let editor: string;
2086
2126
  let billing: string;
2087
2127
  let team: string;
@@ -2098,19 +2138,29 @@ declare namespace base$4 {
2098
2138
  export let ok: string;
2099
2139
  export let add: string;
2100
2140
  export let search: string;
2141
+ export let success: string;
2142
+ export let error: string;
2101
2143
  }
2102
2144
  declare let editor_1$4: {
2103
2145
  "invalid-file-content": string;
2104
2146
  "welcome-back": string;
2105
- "please-log-in-to-run-a-scenario": string;
2147
+ "please-log-in-to-run-a-pipeline": string;
2106
2148
  "execution-done": string;
2107
2149
  "your-project-has-been-executed-successfully": string;
2108
2150
  "execution-failed": string;
2109
2151
  "project-has-encountered-an-error": string;
2110
2152
  "project-saved": string;
2111
2153
  "your-project-has-be-saved-successfully": string;
2154
+ "view-history": string;
2112
2155
  "add-plugin": string;
2113
2156
  "display-advanced-nodes": string;
2157
+ "project-settings": string;
2158
+ "jit-loading-title": string;
2159
+ "jit-loading-subtitle": string;
2160
+ "jit-loading-status": string;
2161
+ "validation-failed": string;
2162
+ "validation-plugin-disabled-or-missing": string;
2163
+ "validation-missing-param": string;
2114
2164
  };
2115
2165
  declare let home$4: {
2116
2166
  "invalid-preset": string;
@@ -2123,24 +2173,85 @@ declare let home$4: {
2123
2173
  "choose-a-new-path": string;
2124
2174
  "invalid-file-type": string;
2125
2175
  "create-project": string;
2176
+ "create-pipeline": string;
2126
2177
  "duplicate-project": string;
2178
+ "duplicate-pipeline": string;
2127
2179
  "project-name": string;
2128
2180
  "new-project": string;
2181
+ "new-pipeline": string;
2129
2182
  open: string;
2183
+ import: string;
2184
+ "pipeline-name": string;
2130
2185
  "your-projects": string;
2131
2186
  "no-projects-yet": string;
2187
+ "no-pipelines-yet": string;
2188
+ "delete-project": string;
2189
+ "confirm-delete-project": string;
2190
+ "cannot-delete-project": string;
2191
+ "project-not-empty": string;
2192
+ transfer: string;
2193
+ "transfer-successful": string;
2194
+ "pipeline-transferred": string;
2195
+ "select-project": string;
2196
+ "build-history": string;
2197
+ duplicate: string;
2198
+ "rename-project": string;
2199
+ "new-project-name": string;
2200
+ "premium-feature": string;
2201
+ "migrate-warning": string;
2202
+ "simple-pipeline": string;
2203
+ "advanced-pipeline": string;
2204
+ "new-simple-project": string;
2205
+ "new-advanced-project": string;
2206
+ "store-project-internally": string;
2207
+ internal: string;
2208
+ "confirm-migration-message": string;
2209
+ "migrate-pipeline": string;
2210
+ "migration-success": string;
2211
+ "migrate-to-internal": string;
2212
+ "only-internal-supported-notice": string;
2213
+ "import-pipeline": string;
2214
+ "import-from-stable": string;
2215
+ "import-pipeline-file": string;
2216
+ "import-success": string;
2217
+ "failed-to-read-file": string;
2218
+ "export-pipeline": string;
2219
+ "export-success": string;
2220
+ "export-failed": string;
2132
2221
  };
2133
- declare namespace scenarios_1$4 {
2134
- let scenarios_2: string;
2135
- export { scenarios_2 as scenarios };
2222
+ declare namespace pipelines_1$4 {
2223
+ let title: string;
2136
2224
  }
2225
+ declare let tour$4: {
2226
+ "start-tour": string;
2227
+ "projects-list-title": string;
2228
+ "projects-list-description": string;
2229
+ "add-project-title": string;
2230
+ "add-project-description": string;
2231
+ "new-pipeline-title": string;
2232
+ "new-pipeline-description": string;
2233
+ "project-actions-title": string;
2234
+ "project-actions-description": string;
2235
+ "editor-canvas-title": string;
2236
+ "editor-canvas-description": string;
2237
+ "editor-save-title": string;
2238
+ "editor-save-description": string;
2239
+ "editor-run-title": string;
2240
+ "editor-run-description": string;
2241
+ "editor-logs-title": string;
2242
+ "editor-logs-description": string;
2243
+ "editor-close-title": string;
2244
+ "editor-close-description": string;
2245
+ };
2137
2246
  declare namespace __json_default_export$3 {
2138
- export { settings$4 as settings, headers$4 as headers, base$4 as base, home$4 as home, scenarios_1$4 as scenarios_1, editor_1$4 as editor, scenarios_1$4 as scenarios };
2247
+ export { settings$4 as settings, headers$4 as headers, base$4 as base, home$4 as home, pipelines_1$4 as pipelines_1, tour$4 as tour, editor_1$4 as editor, pipelines_1$4 as pipelines };
2139
2248
  }
2140
2249
  //#endregion
2141
2250
  //#region src/i18n/pt_BR.json.d.ts
2142
2251
  declare let settings$3: {
2143
2252
  darkTheme: string;
2253
+ autosave: string;
2254
+ autosaveDescription: string;
2144
2255
  language: string;
2145
2256
  languageOptions: {
2146
2257
  "en-US": string;
@@ -2161,8 +2272,6 @@ declare let settings$3: {
2161
2272
  "community-plugins": string;
2162
2273
  versions: string;
2163
2274
  };
2164
- clearTempFolders: string;
2165
- clearTempFoldersDescription: string;
2166
2275
  "pipeline-cache-folder": string;
2167
2276
  "enter-or-browse-for-a-folder": string;
2168
2277
  browse: string;
@@ -2176,10 +2285,19 @@ declare let settings$3: {
2176
2285
  "failed-to-clear-cache-error-message": string;
2177
2286
  "failed-to-reset-cache-folder-error-message": string;
2178
2287
  "select-cache-folder": string;
2288
+ "restart-dashboard-tour": string;
2289
+ "restart-editor-tour": string;
2290
+ "tour-reset-success": string;
2291
+ "storage-pipelab": string;
2292
+ "storage-other": string;
2293
+ "storage-free": string;
2294
+ "disk-usage": string;
2295
+ free: string;
2296
+ other: string;
2179
2297
  };
2180
2298
  declare namespace headers$3 {
2181
2299
  let dashboard: string;
2182
- let scenarios: string;
2300
+ let pipelines: string;
2183
2301
  let editor: string;
2184
2302
  let billing: string;
2185
2303
  let team: string;
@@ -2195,17 +2313,30 @@ declare namespace base$3 {
2195
2313
  export let logs: string;
2196
2314
  export let ok: string;
2197
2315
  export let add: string;
2316
+ export let search: string;
2317
+ export let success: string;
2318
+ export let error: string;
2198
2319
  }
2199
2320
  declare let editor_1$3: {
2200
2321
  "invalid-file-content": string;
2201
2322
  "welcome-back": string;
2202
- "please-log-in-to-run-a-scenario": string;
2323
+ "please-log-in-to-run-a-pipeline": string;
2203
2324
  "execution-done": string;
2204
2325
  "your-project-has-been-executed-successfully": string;
2205
2326
  "execution-failed": string;
2206
2327
  "project-has-encountered-an-error": string;
2207
2328
  "project-saved": string;
2208
2329
  "your-project-has-be-saved-successfully": string;
2330
+ "view-history": string;
2331
+ "add-plugin": string;
2332
+ "display-advanced-nodes": string;
2333
+ "project-settings": string;
2334
+ "jit-loading-title": string;
2335
+ "jit-loading-subtitle": string;
2336
+ "jit-loading-status": string;
2337
+ "validation-failed": string;
2338
+ "validation-plugin-disabled-or-missing": string;
2339
+ "validation-missing-param": string;
2209
2340
  };
2210
2341
  declare let home$3: {
2211
2342
  "invalid-preset": string;
@@ -2218,24 +2349,85 @@ declare let home$3: {
2218
2349
  "choose-a-new-path": string;
2219
2350
  "invalid-file-type": string;
2220
2351
  "create-project": string;
2352
+ "create-pipeline": string;
2221
2353
  "duplicate-project": string;
2354
+ "duplicate-pipeline": string;
2222
2355
  "project-name": string;
2223
2356
  "new-project": string;
2357
+ "new-pipeline": string;
2224
2358
  open: string;
2359
+ import: string;
2360
+ "pipeline-name": string;
2225
2361
  "your-projects": string;
2226
2362
  "no-projects-yet": string;
2363
+ "no-pipelines-yet": string;
2364
+ "delete-project": string;
2365
+ "confirm-delete-project": string;
2366
+ "cannot-delete-project": string;
2367
+ "project-not-empty": string;
2368
+ transfer: string;
2369
+ "transfer-successful": string;
2370
+ "pipeline-transferred": string;
2371
+ "select-project": string;
2372
+ "build-history": string;
2373
+ duplicate: string;
2374
+ "rename-project": string;
2375
+ "new-project-name": string;
2376
+ "premium-feature": string;
2377
+ "migrate-warning": string;
2378
+ "simple-pipeline": string;
2379
+ "advanced-pipeline": string;
2380
+ "new-simple-project": string;
2381
+ "new-advanced-project": string;
2382
+ "store-project-internally": string;
2383
+ internal: string;
2384
+ "confirm-migration-message": string;
2385
+ "migrate-pipeline": string;
2386
+ "migration-success": string;
2387
+ "migrate-to-internal": string;
2388
+ "only-internal-supported-notice": string;
2389
+ "import-pipeline": string;
2390
+ "import-from-stable": string;
2391
+ "import-pipeline-file": string;
2392
+ "import-success": string;
2393
+ "failed-to-read-file": string;
2394
+ "export-pipeline": string;
2395
+ "export-success": string;
2396
+ "export-failed": string;
2227
2397
  };
2228
- declare namespace scenarios_1$3 {
2229
- let scenarios_2: string;
2230
- export { scenarios_2 as scenarios };
2398
+ declare namespace pipelines_1$3 {
2399
+ let title: string;
2231
2400
  }
2401
+ declare let tour$3: {
2402
+ "start-tour": string;
2403
+ "projects-list-title": string;
2404
+ "projects-list-description": string;
2405
+ "add-project-title": string;
2406
+ "add-project-description": string;
2407
+ "new-pipeline-title": string;
2408
+ "new-pipeline-description": string;
2409
+ "project-actions-title": string;
2410
+ "project-actions-description": string;
2411
+ "editor-canvas-title": string;
2412
+ "editor-canvas-description": string;
2413
+ "editor-save-title": string;
2414
+ "editor-save-description": string;
2415
+ "editor-run-title": string;
2416
+ "editor-run-description": string;
2417
+ "editor-logs-title": string;
2418
+ "editor-logs-description": string;
2419
+ "editor-close-title": string;
2420
+ "editor-close-description": string;
2421
+ };
2232
2422
  declare namespace __json_default_export$4 {
2233
- export { settings$3 as settings, headers$3 as headers, base$3 as base, home$3 as home, scenarios_1$3 as scenarios_1, editor_1$3 as editor, scenarios_1$3 as scenarios };
2423
+ export { settings$3 as settings, headers$3 as headers, base$3 as base, home$3 as home, pipelines_1$3 as pipelines_1, tour$3 as tour, editor_1$3 as editor, pipelines_1$3 as pipelines };
2234
2424
  }
2235
2425
  //#endregion
2236
2426
  //#region src/i18n/zh_CN.json.d.ts
2237
2427
  declare let settings$2: {
2238
2428
  darkTheme: string;
2429
+ autosave: string;
2430
+ autosaveDescription: string;
2239
2431
  language: string;
2240
2432
  languageOptions: {
2241
2433
  "en-US": string;
@@ -2256,8 +2448,6 @@ declare let settings$2: {
2256
2448
  "community-plugins": string;
2257
2449
  versions: string;
2258
2450
  };
2259
- clearTempFolders: string;
2260
- clearTempFoldersDescription: string;
2261
2451
  "pipeline-cache-folder": string;
2262
2452
  "enter-or-browse-for-a-folder": string;
2263
2453
  browse: string;
@@ -2271,10 +2461,19 @@ declare let settings$2: {
2271
2461
  "failed-to-clear-cache-error-message": string;
2272
2462
  "failed-to-reset-cache-folder-error-message": string;
2273
2463
  "select-cache-folder": string;
2464
+ "restart-dashboard-tour": string;
2465
+ "restart-editor-tour": string;
2466
+ "tour-reset-success": string;
2467
+ "storage-pipelab": string;
2468
+ "storage-other": string;
2469
+ "storage-free": string;
2470
+ "disk-usage": string;
2471
+ free: string;
2472
+ other: string;
2274
2473
  };
2275
2474
  declare namespace headers$2 {
2276
2475
  let dashboard: string;
2277
- let scenarios: string;
2476
+ let pipelines: string;
2278
2477
  let editor: string;
2279
2478
  let billing: string;
2280
2479
  let team: string;
@@ -2290,17 +2489,30 @@ declare namespace base$2 {
2290
2489
  export let logs: string;
2291
2490
  export let ok: string;
2292
2491
  export let add: string;
2492
+ export let search: string;
2493
+ export let success: string;
2494
+ export let error: string;
2293
2495
  }
2294
2496
  declare let editor_1$2: {
2295
2497
  "invalid-file-content": string;
2296
2498
  "welcome-back": string;
2297
- "please-log-in-to-run-a-scenario": string;
2499
+ "please-log-in-to-run-a-pipeline": string;
2298
2500
  "execution-done": string;
2299
2501
  "your-project-has-been-executed-successfully": string;
2300
2502
  "execution-failed": string;
2301
2503
  "project-has-encountered-an-error": string;
2302
2504
  "project-saved": string;
2303
2505
  "your-project-has-be-saved-successfully": string;
2506
+ "view-history": string;
2507
+ "add-plugin": string;
2508
+ "display-advanced-nodes": string;
2509
+ "project-settings": string;
2510
+ "jit-loading-title": string;
2511
+ "jit-loading-subtitle": string;
2512
+ "jit-loading-status": string;
2513
+ "validation-failed": string;
2514
+ "validation-plugin-disabled-or-missing": string;
2515
+ "validation-missing-param": string;
2304
2516
  };
2305
2517
  declare let home$2: {
2306
2518
  "invalid-preset": string;
@@ -2313,24 +2525,85 @@ declare let home$2: {
2313
2525
  "choose-a-new-path": string;
2314
2526
  "invalid-file-type": string;
2315
2527
  "create-project": string;
2528
+ "create-pipeline": string;
2316
2529
  "duplicate-project": string;
2530
+ "duplicate-pipeline": string;
2317
2531
  "project-name": string;
2318
2532
  "new-project": string;
2533
+ "new-pipeline": string;
2319
2534
  open: string;
2535
+ import: string;
2536
+ "pipeline-name": string;
2320
2537
  "your-projects": string;
2321
2538
  "no-projects-yet": string;
2539
+ "no-pipelines-yet": string;
2540
+ "delete-project": string;
2541
+ "confirm-delete-project": string;
2542
+ "cannot-delete-project": string;
2543
+ "project-not-empty": string;
2544
+ transfer: string;
2545
+ "transfer-successful": string;
2546
+ "pipeline-transferred": string;
2547
+ "select-project": string;
2548
+ "build-history": string;
2549
+ duplicate: string;
2550
+ "rename-project": string;
2551
+ "new-project-name": string;
2552
+ "premium-feature": string;
2553
+ "migrate-warning": string;
2554
+ "simple-pipeline": string;
2555
+ "advanced-pipeline": string;
2556
+ "new-simple-project": string;
2557
+ "new-advanced-project": string;
2558
+ "store-project-internally": string;
2559
+ internal: string;
2560
+ "confirm-migration-message": string;
2561
+ "migrate-pipeline": string;
2562
+ "migration-success": string;
2563
+ "migrate-to-internal": string;
2564
+ "only-internal-supported-notice": string;
2565
+ "import-pipeline": string;
2566
+ "import-from-stable": string;
2567
+ "import-pipeline-file": string;
2568
+ "import-success": string;
2569
+ "failed-to-read-file": string;
2570
+ "export-pipeline": string;
2571
+ "export-success": string;
2572
+ "export-failed": string;
2322
2573
  };
2323
- declare namespace scenarios_1$2 {
2324
- let scenarios_2: string;
2325
- export { scenarios_2 as scenarios };
2574
+ declare namespace pipelines_1$2 {
2575
+ let title: string;
2326
2576
  }
2577
+ declare let tour$2: {
2578
+ "start-tour": string;
2579
+ "projects-list-title": string;
2580
+ "projects-list-description": string;
2581
+ "add-project-title": string;
2582
+ "add-project-description": string;
2583
+ "new-pipeline-title": string;
2584
+ "new-pipeline-description": string;
2585
+ "project-actions-title": string;
2586
+ "project-actions-description": string;
2587
+ "editor-canvas-title": string;
2588
+ "editor-canvas-description": string;
2589
+ "editor-save-title": string;
2590
+ "editor-save-description": string;
2591
+ "editor-run-title": string;
2592
+ "editor-run-description": string;
2593
+ "editor-logs-title": string;
2594
+ "editor-logs-description": string;
2595
+ "editor-close-title": string;
2596
+ "editor-close-description": string;
2597
+ };
2327
2598
  declare namespace __json_default_export$5 {
2328
- export { settings$2 as settings, headers$2 as headers, base$2 as base, home$2 as home, scenarios_1$2 as scenarios_1, editor_1$2 as editor, scenarios_1$2 as scenarios };
2599
+ export { settings$2 as settings, headers$2 as headers, base$2 as base, home$2 as home, pipelines_1$2 as pipelines_1, tour$2 as tour, editor_1$2 as editor, pipelines_1$2 as pipelines };
2329
2600
  }
2330
2601
  //#endregion
2331
2602
  //#region src/i18n/es_ES.json.d.ts
2332
2603
  declare let settings$1: {
2333
2604
  darkTheme: string;
2605
+ autosave: string;
2606
+ autosaveDescription: string;
2334
2607
  language: string;
2335
2608
  languageOptions: {
2336
2609
  "en-US": string;
@@ -2351,8 +2624,6 @@ declare let settings$1: {
2351
2624
  "community-plugins": string;
2352
2625
  versions: string;
2353
2626
  };
2354
- clearTempFolders: string;
2355
- clearTempFoldersDescription: string;
2356
2627
  "pipeline-cache-folder": string;
2357
2628
  "enter-or-browse-for-a-folder": string;
2358
2629
  browse: string;
@@ -2366,10 +2637,19 @@ declare let settings$1: {
2366
2637
  "failed-to-clear-cache-error-message": string;
2367
2638
  "failed-to-reset-cache-folder-error-message": string;
2368
2639
  "select-cache-folder": string;
2640
+ "restart-dashboard-tour": string;
2641
+ "restart-editor-tour": string;
2642
+ "tour-reset-success": string;
2643
+ "storage-pipelab": string;
2644
+ "storage-other": string;
2645
+ "storage-free": string;
2646
+ "disk-usage": string;
2647
+ free: string;
2648
+ other: string;
2369
2649
  };
2370
2650
  declare namespace headers$1 {
2371
2651
  let dashboard: string;
2372
- let scenarios: string;
2652
+ let pipelines: string;
2373
2653
  let editor: string;
2374
2654
  let billing: string;
2375
2655
  let team: string;
@@ -2385,17 +2665,30 @@ declare namespace base$1 {
2385
2665
  export let logs: string;
2386
2666
  export let ok: string;
2387
2667
  export let add: string;
2668
+ export let search: string;
2669
+ export let success: string;
2670
+ export let error: string;
2388
2671
  }
2389
2672
  declare let editor_1$1: {
2390
2673
  "invalid-file-content": string;
2391
2674
  "welcome-back": string;
2392
- "please-log-in-to-run-a-scenario": string;
2675
+ "please-log-in-to-run-a-pipeline": string;
2393
2676
  "execution-done": string;
2394
2677
  "your-project-has-been-executed-successfully": string;
2395
2678
  "execution-failed": string;
2396
2679
  "project-has-encountered-an-error": string;
2397
2680
  "project-saved": string;
2398
2681
  "your-project-has-be-saved-successfully": string;
2682
+ "view-history": string;
2683
+ "add-plugin": string;
2684
+ "display-advanced-nodes": string;
2685
+ "project-settings": string;
2686
+ "jit-loading-title": string;
2687
+ "jit-loading-subtitle": string;
2688
+ "jit-loading-status": string;
2689
+ "validation-failed": string;
2690
+ "validation-plugin-disabled-or-missing": string;
2691
+ "validation-missing-param": string;
2399
2692
  };
2400
2693
  declare let home$1: {
2401
2694
  "invalid-preset": string;
@@ -2408,24 +2701,85 @@ declare let home$1: {
2408
2701
  "choose-a-new-path": string;
2409
2702
  "invalid-file-type": string;
2410
2703
  "create-project": string;
2704
+ "create-pipeline": string;
2411
2705
  "duplicate-project": string;
2706
+ "duplicate-pipeline": string;
2412
2707
  "project-name": string;
2413
2708
  "new-project": string;
2709
+ "new-pipeline": string;
2414
2710
  open: string;
2711
+ import: string;
2712
+ "pipeline-name": string;
2415
2713
  "your-projects": string;
2416
2714
  "no-projects-yet": string;
2715
+ "no-pipelines-yet": string;
2716
+ "delete-project": string;
2717
+ "confirm-delete-project": string;
2718
+ "cannot-delete-project": string;
2719
+ "project-not-empty": string;
2720
+ transfer: string;
2721
+ "transfer-successful": string;
2722
+ "pipeline-transferred": string;
2723
+ "select-project": string;
2724
+ "build-history": string;
2725
+ duplicate: string;
2726
+ "rename-project": string;
2727
+ "new-project-name": string;
2728
+ "premium-feature": string;
2729
+ "migrate-warning": string;
2730
+ "simple-pipeline": string;
2731
+ "advanced-pipeline": string;
2732
+ "new-simple-project": string;
2733
+ "new-advanced-project": string;
2734
+ "store-project-internally": string;
2735
+ internal: string;
2736
+ "confirm-migration-message": string;
2737
+ "migrate-pipeline": string;
2738
+ "migration-success": string;
2739
+ "migrate-to-internal": string;
2740
+ "only-internal-supported-notice": string;
2741
+ "import-pipeline": string;
2742
+ "import-from-stable": string;
2743
+ "import-pipeline-file": string;
2744
+ "import-success": string;
2745
+ "failed-to-read-file": string;
2746
+ "export-pipeline": string;
2747
+ "export-success": string;
2748
+ "export-failed": string;
2417
2749
  };
2418
- declare namespace scenarios_1$1 {
2419
- let scenarios_2: string;
2420
- export { scenarios_2 as scenarios };
2750
+ declare namespace pipelines_1$1 {
2751
+ let title: string;
2421
2752
  }
2753
+ declare let tour$1: {
2754
+ "start-tour": string;
2755
+ "projects-list-title": string;
2756
+ "projects-list-description": string;
2757
+ "add-project-title": string;
2758
+ "add-project-description": string;
2759
+ "new-pipeline-title": string;
2760
+ "new-pipeline-description": string;
2761
+ "project-actions-title": string;
2762
+ "project-actions-description": string;
2763
+ "editor-canvas-title": string;
2764
+ "editor-canvas-description": string;
2765
+ "editor-save-title": string;
2766
+ "editor-save-description": string;
2767
+ "editor-run-title": string;
2768
+ "editor-run-description": string;
2769
+ "editor-logs-title": string;
2770
+ "editor-logs-description": string;
2771
+ "editor-close-title": string;
2772
+ "editor-close-description": string;
2773
+ };
2422
2774
  declare namespace __json_default_export$2 {
2423
- export { settings$1 as settings, headers$1 as headers, base$1 as base, home$1 as home, scenarios_1$1 as scenarios_1, editor_1$1 as editor, scenarios_1$1 as scenarios };
2775
+ export { settings$1 as settings, headers$1 as headers, base$1 as base, home$1 as home, pipelines_1$1 as pipelines_1, tour$1 as tour, editor_1$1 as editor, pipelines_1$1 as pipelines };
2424
2776
  }
2425
2777
  //#endregion
2426
2778
  //#region src/i18n/de_DE.json.d.ts
2427
2779
  declare let settings: {
2428
2780
  darkTheme: string;
2781
+ autosave: string;
2782
+ autosaveDescription: string;
2429
2783
  language: string;
2430
2784
  languageOptions: {
2431
2785
  "en-US": string;
@@ -2446,8 +2800,6 @@ declare let settings: {
2446
2800
  "community-plugins": string;
2447
2801
  versions: string;
2448
2802
  };
2449
- clearTempFolders: string;
2450
- clearTempFoldersDescription: string;
2451
2803
  "pipeline-cache-folder": string;
2452
2804
  "enter-or-browse-for-a-folder": string;
2453
2805
  browse: string;
@@ -2461,10 +2813,19 @@ declare let settings: {
2461
2813
  "failed-to-clear-cache-error-message": string;
2462
2814
  "failed-to-reset-cache-folder-error-message": string;
2463
2815
  "select-cache-folder": string;
2816
+ "restart-dashboard-tour": string;
2817
+ "restart-editor-tour": string;
2818
+ "tour-reset-success": string;
2819
+ "storage-pipelab": string;
2820
+ "storage-other": string;
2821
+ "storage-free": string;
2822
+ "disk-usage": string;
2823
+ free: string;
2824
+ other: string;
2464
2825
  };
2465
2826
  declare namespace headers {
2466
2827
  let dashboard: string;
2467
- let scenarios: string;
2828
+ let pipelines: string;
2468
2829
  let editor: string;
2469
2830
  let billing: string;
2470
2831
  let team: string;
@@ -2480,17 +2841,30 @@ declare namespace base {
2480
2841
  export let logs: string;
2481
2842
  export let ok: string;
2482
2843
  export let add: string;
2844
+ export let search: string;
2845
+ export let success: string;
2846
+ export let error: string;
2483
2847
  }
2484
2848
  declare let editor_1: {
2485
2849
  "invalid-file-content": string;
2486
2850
  "welcome-back": string;
2487
- "please-log-in-to-run-a-scenario": string;
2851
+ "please-log-in-to-run-a-pipeline": string;
2488
2852
  "execution-done": string;
2489
2853
  "your-project-has-been-executed-successfully": string;
2490
2854
  "execution-failed": string;
2491
2855
  "project-has-encountered-an-error": string;
2492
2856
  "project-saved": string;
2493
2857
  "your-project-has-be-saved-successfully": string;
2858
+ "view-history": string;
2859
+ "add-plugin": string;
2860
+ "display-advanced-nodes": string;
2861
+ "project-settings": string;
2862
+ "jit-loading-title": string;
2863
+ "jit-loading-subtitle": string;
2864
+ "jit-loading-status": string;
2865
+ "validation-failed": string;
2866
+ "validation-plugin-disabled-or-missing": string;
2867
+ "validation-missing-param": string;
2494
2868
  };
2495
2869
  declare let home: {
2496
2870
  "invalid-preset": string;
@@ -2503,19 +2877,78 @@ declare let home: {
2503
2877
  "choose-a-new-path": string;
2504
2878
  "invalid-file-type": string;
2505
2879
  "create-project": string;
2880
+ "create-pipeline": string;
2506
2881
  "duplicate-project": string;
2882
+ "duplicate-pipeline": string;
2507
2883
  "project-name": string;
2508
2884
  "new-project": string;
2885
+ "new-pipeline": string;
2509
2886
  open: string;
2887
+ import: string;
2888
+ "pipeline-name": string;
2510
2889
  "your-projects": string;
2511
2890
  "no-projects-yet": string;
2891
+ "no-pipelines-yet": string;
2892
+ "delete-project": string;
2893
+ "confirm-delete-project": string;
2894
+ "cannot-delete-project": string;
2895
+ "project-not-empty": string;
2896
+ transfer: string;
2897
+ "transfer-successful": string;
2898
+ "pipeline-transferred": string;
2899
+ "select-project": string;
2900
+ "build-history": string;
2901
+ duplicate: string;
2902
+ "rename-project": string;
2903
+ "new-project-name": string;
2904
+ "premium-feature": string;
2905
+ "migrate-warning": string;
2906
+ "simple-pipeline": string;
2907
+ "advanced-pipeline": string;
2908
+ "new-simple-project": string;
2909
+ "new-advanced-project": string;
2910
+ "store-project-internally": string;
2911
+ internal: string;
2912
+ "confirm-migration-message": string;
2913
+ "migrate-pipeline": string;
2914
+ "migration-success": string;
2915
+ "migrate-to-internal": string;
2916
+ "only-internal-supported-notice": string;
2917
+ "import-pipeline": string;
2918
+ "import-from-stable": string;
2919
+ "import-pipeline-file": string;
2920
+ "import-success": string;
2921
+ "failed-to-read-file": string;
2922
+ "export-pipeline": string;
2923
+ "export-success": string;
2924
+ "export-failed": string;
2512
2925
  };
2513
- declare namespace scenarios_1 {
2514
- let scenarios_2: string;
2515
- export { scenarios_2 as scenarios };
2926
+ declare namespace pipelines_1 {
2927
+ let title: string;
2516
2928
  }
2929
+ declare let tour: {
2930
+ "start-tour": string;
2931
+ "projects-list-title": string;
2932
+ "projects-list-description": string;
2933
+ "add-project-title": string;
2934
+ "add-project-description": string;
2935
+ "new-pipeline-title": string;
2936
+ "new-pipeline-description": string;
2937
+ "project-actions-title": string;
2938
+ "project-actions-description": string;
2939
+ "editor-canvas-title": string;
2940
+ "editor-canvas-description": string;
2941
+ "editor-save-title": string;
2942
+ "editor-save-description": string;
2943
+ "editor-run-title": string;
2944
+ "editor-run-description": string;
2945
+ "editor-logs-title": string;
2946
+ "editor-logs-description": string;
2947
+ "editor-close-title": string;
2948
+ "editor-close-description": string;
2949
+ };
2517
2950
  declare namespace __json_default_export {
2518
- export { settings, headers, base, home, scenarios_1, editor_1 as editor, scenarios_1 as scenarios };
2951
+ export { settings, headers, base, home, pipelines_1, tour, editor_1 as editor, pipelines_1 as pipelines };
2519
2952
  }
2520
2953
  //#endregion
2521
2954
  //#region src/i18n-utils.d.ts
@@ -3961,5 +4394,5 @@ declare const normalizePipelineConfig: (state: any) => boolean;
3961
4394
  declare const connectionsMigrator: any;
3962
4395
  declare const defaultConnections: any;
3963
4396
  //#endregion
3964
- export { Action, Agent, type AppConfig, type AppConfigV1, type AppConfigV2, type AppConfigV3, type AppConfigV4, type AppConfigV5, type AppConfigV6, type AppConfigV7, type AppConfigV8, AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, AppSettingsValidatorV8, AuthorizationCheck, AuthorizationContext, BaseNode, BenefitNotFoundError, Block, BlockAction, BlockComment, BlockEvent, BuildHistoryConfig, BuildHistoryEntry, BuildHistoryQuery, BuildHistoryResponse, Channels, type Connection, ConnectionValidator, type ConnectionsConfig, type ConnectionsConfigV1, ConnectionsValidator, ConnectionsValidatorV1, Context, ControlType, ControlTypeArray, ControlTypeBase, ControlTypeBoolean, ControlTypeCheckbox, ControlTypeColor, ControlTypeElectronConfigureV2, ControlTypeExpression, ControlTypeInput, ControlTypeJSON, ControlTypeMultiSelect, ControlTypeNetlifySite, ControlTypePath, ControlTypeSelect, CreateQuickJSFn, Data$1 as Data, DataResult, Database, EditorParam, EditorParamValidatorV3, End, EndEvent, EnhancedFile, Enums, Event$1 as Event, Events, ExecutionError, ExecutionStep, Expression, ExtractInputsFromAction, ExtractInputsFromEvent, ExtractInputsFromExpression, type FileRepo, FileRepoProjectValidatorV2, type FileRepoV1, type FileRepoV2, FileRepoValidator, FileRepoValidatorV1, FileRepoValidatorV2, GetDataEntries, GetDataKeys, GetFlowEntries, GetFlowKeys, HandleListenerRenderer, HandleListenerRendererSendFn, IBuildHistoryStorage, IconType, InputDefinition, InputOutputDefinition, InputsDefinition, InputsOutputsDefinition, IntegrationDefinition, IntegrationField, type IpcDefinition, IpcEvent, IpcMessage, Json, Locales, LogEntry, MainPluginDefinition, MessageSchema, Meta, type Migrator, type NodeId, Origin, OriginValidator, OutputDefinition, OutputsDefinition, ParamsToInput, PathOptions, PipelabNode, PipelabSelectOption, PluginDefinition, Position, Preset, PresetFn, PresetResult, Presets, PropType, RELEASE_SYNC, RendererChannels, RendererData, RendererEnd, RendererEvents, type IpcDefinition$1 as RendererIpcDefinition, RendererMessage, RendererNodeDefinition, RendererPluginDefinition, type RequestId as RendererRequestId, type RequestId$1 as RequestId, RetentionPolicy, SaveLocation, SaveLocationExternal, SaveLocationExternalValidator, SaveLocationInternal, SaveLocationInternalValidator, SaveLocationPipelabCloud, SaveLocationPipelabCloudValidator, SaveLocationValidator, SavedFile, SavedFileDefault, SavedFileDefaultValidatorV4, SavedFileDefaultValidatorV5, SavedFileSimple, SavedFileSimpleValidatorV4, SavedFileSimpleValidatorV5, SavedFileV1, SavedFileV2, SavedFileV3, SavedFileV4, SavedFileV5, SavedFileValidator, SavedFileValidatorV1, SavedFileValidatorV2, SavedFileValidatorV3, SavedFileValidatorV4, SavedFileValidatorV5, SetOutputActionFn, SetOutputExpressionFn, ShellChannels, Steps, SubscriptionBenefit, SubscriptionError, SubscriptionExpiredError, SubscriptionRequiredError, Tables, TablesInsert, TablesUpdate, UnauthorizedError, UpdateStatus, Variable, VariableBase, VariableValidatorV1, WebSocketAPI, WebSocketClientConfig, WebSocketClientEvents, WebSocketConnectionError, WebSocketConnectionInfo, WebSocketConnectionState, WebSocketError, WebSocketErrorMessage, WebSocketEvent, WebSocketHandler, WebSocketListener, WebSocketManager, WebSocketMessage, WebSocketMessageType, WebSocketRequestMessage, WebSocketResponseMessage, WebSocketResponseType, WebSocketSendFunction, WebSocketServerConfig, WebSocketServerEvents, WebSocketTimeoutError, WithId, appSettingsMigrator, configRegistry, connectionsMigrator, createAction, createArray, createBooleanParam, createColorPicker, createDefinition, createEvent, createExpression, createNetlifySiteParam, createNodeDefinition, createNumberParam, createPasswordParam, createPathParam, createQuickJs, createQuickJsFromVariant, createRawParam, createStringParam, createSubscriptionError, createVersionSchema, __json_default_export as de_DE, defaultAppSettings, defaultConnections, defaultFileRepo, __json_default_export$1 as en_US, __json_default_export$2 as es_ES, fileRepoMigrations, fmt, foo, __json_default_export$3 as fr_FR, getSubscriptionErrorMessage, isRenderer, isRequired, isSubscriptionError, isSupabaseAvailable, isWebSocketErrorMessage, isWebSocketRequestMessage, isWebSocketResponseMessage, makeResolvedParams, newVariant, normalizePipelineConfig, processGraph, __json_default_export$4 as pt_BR, savedFileMigrator, supabase, transformUrl, useLogger, usePlugins, variableToFormattedVariable, __json_default_export$5 as zh_CN };
4397
+ export { Action, Agent, type AppConfig, type AppConfigV1, type AppConfigV2, type AppConfigV3, type AppConfigV4, type AppConfigV5, type AppConfigV6, type AppConfigV7, AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, AuthorizationCheck, AuthorizationContext, BaseNode, BenefitNotFoundError, Block, BlockAction, BlockComment, BlockEvent, BuildHistoryEntry, BuildHistoryQuery, BuildHistoryResponse, Channels, type Connection, ConnectionValidator, type ConnectionsConfig, type ConnectionsConfigV1, ConnectionsValidator, ConnectionsValidatorV1, Context, ControlType, ControlTypeArray, ControlTypeBase, ControlTypeBoolean, ControlTypeCheckbox, ControlTypeColor, ControlTypeElectronConfigureV2, ControlTypeExpression, ControlTypeInput, ControlTypeJSON, ControlTypeMultiSelect, ControlTypeNetlifySite, ControlTypePath, ControlTypeSelect, CreateQuickJSFn, Data$1 as Data, DataResult, Database, EditorParam, EditorParamValidatorV3, End, EndEvent, EnhancedFile, Enums, Event$1 as Event, Events, ExecutionError, ExecutionStep, Expression, ExtractInputsFromAction, ExtractInputsFromEvent, ExtractInputsFromExpression, type FileRepo, FileRepoProjectValidatorV2, type FileRepoV1, type FileRepoV2, type FileRepoV3, FileRepoValidator, FileRepoValidatorV1, FileRepoValidatorV2, FileRepoValidatorV3, GetDataEntries, GetDataKeys, GetFlowEntries, GetFlowKeys, HandleListenerRenderer, HandleListenerRendererSendFn, IBuildHistoryStorage, IconType, InputDefinition, InputOutputDefinition, InputsDefinition, InputsOutputsDefinition, IntegrationDefinition, IntegrationField, type IpcDefinition, IpcEvent, IpcMessage, Json, Locales, LogEntry, MainPluginDefinition, MessageSchema, Meta, MigrationOptions, type Migrator, type NodeId, Origin, OriginValidator, OutputDefinition, OutputsDefinition, ParamsToInput, PathOptions, PipelabNode, PipelabSelectOption, PluginDefinition, Position, Preset, PresetFn, PresetResult, Presets, PropType, RELEASE_SYNC, RendererChannels, RendererData, RendererEnd, RendererEvents, type IpcDefinition$1 as RendererIpcDefinition, RendererMessage, RendererNodeDefinition, RendererPluginDefinition, type RequestId as RendererRequestId, type RequestId$1 as RequestId, SaveLocation, SaveLocationExternal, SaveLocationExternalValidator, SaveLocationInternal, SaveLocationInternalValidator, SaveLocationPipelabCloud, SaveLocationPipelabCloudValidator, SaveLocationValidator, SavedFile, SavedFileDefault, SavedFileDefaultValidatorV4, SavedFileDefaultValidatorV5, SavedFileSimple, SavedFileSimpleValidatorV4, SavedFileSimpleValidatorV5, SavedFileV1, SavedFileV2, SavedFileV3, SavedFileV4, SavedFileV5, SavedFileValidator, SavedFileValidatorV1, SavedFileValidatorV2, SavedFileValidatorV3, SavedFileValidatorV4, SavedFileValidatorV5, SetOutputActionFn, SetOutputExpressionFn, ShellChannels, StableDataReport, Steps, SubscriptionBenefit, SubscriptionError, SubscriptionExpiredError, SubscriptionRequiredError, Tables, TablesInsert, TablesUpdate, UnauthorizedError, UpdateStatus, Variable, VariableBase, VariableValidatorV1, WebSocketAPI, WebSocketClientConfig, WebSocketClientEvents, WebSocketConnectionError, WebSocketConnectionInfo, WebSocketConnectionState, WebSocketError, WebSocketErrorMessage, WebSocketEvent, WebSocketHandler, WebSocketListener, WebSocketManager, WebSocketMessage, WebSocketMessageType, WebSocketRequestMessage, WebSocketResponseMessage, WebSocketResponseType, WebSocketSendFunction, WebSocketServerConfig, WebSocketServerEvents, WebSocketTimeoutError, WithId, appSettingsMigrator, configRegistry, connectionsMigrator, createAction, createArray, createBooleanParam, createColorPicker, createDefinition, createEvent, createExpression, createNetlifySiteParam, createNodeDefinition, createNumberParam, createPasswordParam, createPathParam, createQuickJs, createQuickJsFromVariant, createRawParam, createStringParam, createSubscriptionError, createVersionSchema, __json_default_export as de_DE, defaultAppSettings, defaultConnections, defaultFileRepo, __json_default_export$1 as en_US, __json_default_export$2 as es_ES, fileRepoMigrations, fmt, foo, __json_default_export$3 as fr_FR, getSubscriptionErrorMessage, isRenderer, isRequired, isSubscriptionError, isSupabaseAvailable, isWebSocketErrorMessage, isWebSocketRequestMessage, isWebSocketResponseMessage, makeResolvedParams, newVariant, normalizePipelineConfig, processGraph, __json_default_export$4 as pt_BR, savedFileMigrator, supabase, transformUrl, useLogger, usePlugins, variableToFormattedVariable, __json_default_export$5 as zh_CN };
3965
4398
  //# sourceMappingURL=index.d.mts.map