@pipelab/shared 1.0.0-beta.13 → 1.0.0-beta.14
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/CHANGELOG.md +9 -0
- package/dist/index.d.mts +463 -128
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +730 -400
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/apis.ts +5 -12
- package/src/build-history.ts +1 -23
- package/src/config/migrators.ts +17 -24
- package/src/config/projects-definition.ts +8 -1
- package/src/config/projects-types.ts +1 -25
- package/src/config/settings-definition.ts +0 -2
- package/src/config.schema.ts +2 -48
- package/src/i18n/de_DE.json +131 -54
- package/src/i18n/en_US.json +50 -56
- package/src/i18n/es_ES.json +130 -53
- package/src/i18n/fr_FR.json +120 -46
- package/src/i18n/pt_BR.json +129 -52
- package/src/i18n/zh_CN.json +133 -56
- package/src/index.ts +2 -2
- package/src/model.test.ts +11 -18
package/dist/index.d.mts
CHANGED
|
@@ -1045,6 +1045,7 @@ interface BuildHistoryEntry {
|
|
|
1045
1045
|
pipelineId: string;
|
|
1046
1046
|
projectName: string;
|
|
1047
1047
|
projectPath: string;
|
|
1048
|
+
cachePath?: string;
|
|
1048
1049
|
status: "running" | "completed" | "failed" | "cancelled";
|
|
1049
1050
|
startTime: number;
|
|
1050
1051
|
endTime?: number;
|
|
@@ -1084,11 +1085,6 @@ interface IBuildHistoryStorage {
|
|
|
1084
1085
|
newestEntry?: number;
|
|
1085
1086
|
numberOfPipelines: number;
|
|
1086
1087
|
userDataPath: string;
|
|
1087
|
-
retentionPolicy: {
|
|
1088
|
-
enabled: boolean;
|
|
1089
|
-
maxEntries: number;
|
|
1090
|
-
maxAge: number;
|
|
1091
|
-
};
|
|
1092
1088
|
disk: {
|
|
1093
1089
|
total: number;
|
|
1094
1090
|
free: number;
|
|
@@ -1101,20 +1097,6 @@ interface IBuildHistoryStorage {
|
|
|
1101
1097
|
};
|
|
1102
1098
|
}>;
|
|
1103
1099
|
}
|
|
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
1100
|
interface SubscriptionBenefit {
|
|
1119
1101
|
id: string;
|
|
1120
1102
|
name: string;
|
|
@@ -1284,11 +1266,6 @@ type IpcDefinition = {
|
|
|
1284
1266
|
oldestEntry?: number;
|
|
1285
1267
|
newestEntry?: number;
|
|
1286
1268
|
}>];
|
|
1287
|
-
"build-history:configure": [{
|
|
1288
|
-
config: Partial<BuildHistoryConfig>;
|
|
1289
|
-
}, EndEvent$1<{
|
|
1290
|
-
result: "ok" | "ko";
|
|
1291
|
-
}>];
|
|
1292
1269
|
"agents:get": [void, EndEvent$1<{
|
|
1293
1270
|
agents: Agent[];
|
|
1294
1271
|
}>];
|
|
@@ -1538,10 +1515,41 @@ declare const FileRepoValidatorV2: valibot.ObjectSchema<{
|
|
|
1538
1515
|
readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
|
|
1539
1516
|
}, undefined>], undefined>, undefined>, readonly []>;
|
|
1540
1517
|
}, undefined>;
|
|
1518
|
+
declare const FileRepoValidatorV3: valibot.ObjectSchema<{
|
|
1519
|
+
readonly version: valibot.LiteralSchema<"3.0.0", undefined>;
|
|
1520
|
+
readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
|
|
1521
|
+
readonly id: valibot.StringSchema<undefined>;
|
|
1522
|
+
readonly name: valibot.StringSchema<undefined>;
|
|
1523
|
+
readonly description: valibot.StringSchema<undefined>;
|
|
1524
|
+
}, undefined>, undefined>;
|
|
1525
|
+
readonly pipelines: valibot.OptionalSchema<valibot.ArraySchema<valibot.UnionSchema<[valibot.ObjectSchema<{
|
|
1526
|
+
readonly id: valibot.StringSchema<undefined>;
|
|
1527
|
+
readonly project: valibot.StringSchema<undefined>;
|
|
1528
|
+
readonly path: valibot.StringSchema<undefined>;
|
|
1529
|
+
readonly lastModified: valibot.StringSchema<undefined>;
|
|
1530
|
+
readonly type: valibot.LiteralSchema<"external", undefined>;
|
|
1531
|
+
readonly summary: valibot.ObjectSchema<{
|
|
1532
|
+
readonly plugins: valibot.ArraySchema<valibot.StringSchema<undefined>, undefined>;
|
|
1533
|
+
readonly name: valibot.StringSchema<undefined>;
|
|
1534
|
+
readonly description: valibot.StringSchema<undefined>;
|
|
1535
|
+
}, undefined>;
|
|
1536
|
+
}, undefined>, valibot.ObjectSchema<{
|
|
1537
|
+
readonly id: valibot.StringSchema<undefined>;
|
|
1538
|
+
readonly project: valibot.StringSchema<undefined>;
|
|
1539
|
+
readonly lastModified: valibot.StringSchema<undefined>;
|
|
1540
|
+
readonly type: valibot.LiteralSchema<"internal", undefined>;
|
|
1541
|
+
readonly configName: valibot.StringSchema<undefined>;
|
|
1542
|
+
}, undefined>, valibot.ObjectSchema<{
|
|
1543
|
+
readonly id: valibot.StringSchema<undefined>;
|
|
1544
|
+
readonly project: valibot.StringSchema<undefined>;
|
|
1545
|
+
readonly type: valibot.LiteralSchema<"pipelab-cloud", undefined>;
|
|
1546
|
+
}, undefined>], undefined>, undefined>, readonly []>;
|
|
1547
|
+
}, undefined>;
|
|
1541
1548
|
type FileRepoV1 = InferInput<typeof FileRepoValidatorV1>;
|
|
1542
1549
|
type FileRepoV2 = InferInput<typeof FileRepoValidatorV2>;
|
|
1550
|
+
type FileRepoV3 = InferInput<typeof FileRepoValidatorV3>;
|
|
1543
1551
|
declare const FileRepoValidator: valibot.ObjectSchema<{
|
|
1544
|
-
readonly version: valibot.LiteralSchema<"
|
|
1552
|
+
readonly version: valibot.LiteralSchema<"3.0.0", undefined>;
|
|
1545
1553
|
readonly projects: valibot.ArraySchema<valibot.ObjectSchema<{
|
|
1546
1554
|
readonly id: valibot.StringSchema<undefined>;
|
|
1547
1555
|
readonly name: valibot.StringSchema<undefined>;
|
|
@@ -1652,41 +1660,6 @@ declare const AppSettingsValidatorV7: valibot.ObjectSchema<{
|
|
|
1652
1660
|
readonly name: valibot.StringSchema<undefined>;
|
|
1653
1661
|
readonly url: valibot.StringSchema<undefined>;
|
|
1654
1662
|
}, 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
1663
|
readonly plugins: valibot.ArraySchema<valibot.ObjectSchema<{
|
|
1691
1664
|
readonly name: valibot.StringSchema<undefined>;
|
|
1692
1665
|
readonly enabled: valibot.BooleanSchema<undefined>;
|
|
@@ -1731,11 +1704,10 @@ type AppConfigV4 = InferInput<typeof AppSettingsValidatorV4>;
|
|
|
1731
1704
|
type AppConfigV5 = InferInput<typeof AppSettingsValidatorV5>;
|
|
1732
1705
|
type AppConfigV6 = InferInput<typeof AppSettingsValidatorV6>;
|
|
1733
1706
|
type AppConfigV7 = InferInput<typeof AppSettingsValidatorV7>;
|
|
1734
|
-
type
|
|
1735
|
-
type AppConfig = AppConfigV8;
|
|
1707
|
+
type AppConfig = AppConfigV7;
|
|
1736
1708
|
declare const AppSettingsValidator: valibot.ObjectSchema<{
|
|
1737
1709
|
readonly theme: valibot.UnionSchema<[valibot.LiteralSchema<"light", undefined>, valibot.LiteralSchema<"dark", undefined>], undefined>;
|
|
1738
|
-
readonly version: valibot.LiteralSchema<"
|
|
1710
|
+
readonly version: valibot.LiteralSchema<"7.0.0", undefined>;
|
|
1739
1711
|
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
1712
|
readonly tours: valibot.ObjectSchema<{
|
|
1741
1713
|
readonly dashboard: valibot.ObjectSchema<{
|
|
@@ -1753,13 +1725,6 @@ declare const AppSettingsValidator: valibot.ObjectSchema<{
|
|
|
1753
1725
|
readonly name: valibot.StringSchema<undefined>;
|
|
1754
1726
|
readonly url: valibot.StringSchema<undefined>;
|
|
1755
1727
|
}, 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
1728
|
readonly plugins: valibot.ArraySchema<valibot.ObjectSchema<{
|
|
1764
1729
|
readonly name: valibot.StringSchema<undefined>;
|
|
1765
1730
|
readonly enabled: valibot.BooleanSchema<undefined>;
|
|
@@ -1903,13 +1868,6 @@ declare let settings$5: {
|
|
|
1903
1868
|
"restart-dashboard-tour": string;
|
|
1904
1869
|
"restart-editor-tour": string;
|
|
1905
1870
|
"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
1871
|
"storage-pipelab": string;
|
|
1914
1872
|
"storage-other": string;
|
|
1915
1873
|
"storage-free": string;
|
|
@@ -1919,14 +1877,11 @@ declare let settings$5: {
|
|
|
1919
1877
|
};
|
|
1920
1878
|
declare namespace headers$5 {
|
|
1921
1879
|
let dashboard: string;
|
|
1922
|
-
let
|
|
1880
|
+
let pipelines: string;
|
|
1923
1881
|
let editor: string;
|
|
1924
1882
|
let billing: string;
|
|
1925
1883
|
let team: string;
|
|
1926
1884
|
}
|
|
1927
|
-
declare let navigation: {
|
|
1928
|
-
"build-history": string;
|
|
1929
|
-
};
|
|
1930
1885
|
declare namespace base$5 {
|
|
1931
1886
|
export let close: string;
|
|
1932
1887
|
export let save: string;
|
|
@@ -1939,11 +1894,13 @@ declare namespace base$5 {
|
|
|
1939
1894
|
export let ok: string;
|
|
1940
1895
|
export let add: string;
|
|
1941
1896
|
export let search: string;
|
|
1897
|
+
export let success: string;
|
|
1898
|
+
export let error: string;
|
|
1942
1899
|
}
|
|
1943
1900
|
declare let editor_1$5: {
|
|
1944
1901
|
"invalid-file-content": string;
|
|
1945
1902
|
"welcome-back": string;
|
|
1946
|
-
"please-log-in-to-run-a-
|
|
1903
|
+
"please-log-in-to-run-a-pipeline": string;
|
|
1947
1904
|
"execution-done": string;
|
|
1948
1905
|
"your-project-has-been-executed-successfully": string;
|
|
1949
1906
|
"execution-failed": string;
|
|
@@ -1972,7 +1929,9 @@ declare let home$5: {
|
|
|
1972
1929
|
"choose-a-new-path": string;
|
|
1973
1930
|
"invalid-file-type": string;
|
|
1974
1931
|
"create-project": string;
|
|
1932
|
+
"create-pipeline": string;
|
|
1975
1933
|
"duplicate-project": string;
|
|
1934
|
+
"duplicate-pipeline": string;
|
|
1976
1935
|
"project-name": string;
|
|
1977
1936
|
"new-project": string;
|
|
1978
1937
|
"new-pipeline": string;
|
|
@@ -2011,11 +1970,10 @@ declare let home$5: {
|
|
|
2011
1970
|
"import-success": string;
|
|
2012
1971
|
"failed-to-read-file": string;
|
|
2013
1972
|
};
|
|
2014
|
-
declare namespace
|
|
2015
|
-
let
|
|
2016
|
-
export { scenarios_2 as scenarios };
|
|
1973
|
+
declare namespace pipelines_1$5 {
|
|
1974
|
+
let title: string;
|
|
2017
1975
|
}
|
|
2018
|
-
declare let tour: {
|
|
1976
|
+
declare let tour$5: {
|
|
2019
1977
|
"start-tour": string;
|
|
2020
1978
|
"projects-list-title": string;
|
|
2021
1979
|
"projects-list-description": string;
|
|
@@ -2037,12 +1995,14 @@ declare let tour: {
|
|
|
2037
1995
|
"editor-close-description": string;
|
|
2038
1996
|
};
|
|
2039
1997
|
declare namespace __json_default_export$1 {
|
|
2040
|
-
export { settings$5 as settings, headers$5 as headers,
|
|
1998
|
+
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
1999
|
}
|
|
2042
2000
|
//#endregion
|
|
2043
2001
|
//#region src/i18n/fr_FR.json.d.ts
|
|
2044
2002
|
declare let settings$4: {
|
|
2045
2003
|
darkTheme: string;
|
|
2004
|
+
autosave: string;
|
|
2005
|
+
autosaveDescription: string;
|
|
2046
2006
|
language: string;
|
|
2047
2007
|
languageOptions: {
|
|
2048
2008
|
"en-US": string;
|
|
@@ -2063,8 +2023,6 @@ declare let settings$4: {
|
|
|
2063
2023
|
"community-plugins": string;
|
|
2064
2024
|
versions: string;
|
|
2065
2025
|
};
|
|
2066
|
-
clearTempFolders: string;
|
|
2067
|
-
clearTempFoldersDescription: string;
|
|
2068
2026
|
"pipeline-cache-folder": string;
|
|
2069
2027
|
"enter-or-browse-for-a-folder": string;
|
|
2070
2028
|
browse: string;
|
|
@@ -2078,10 +2036,19 @@ declare let settings$4: {
|
|
|
2078
2036
|
"failed-to-clear-cache-error-message": string;
|
|
2079
2037
|
"failed-to-reset-cache-folder-error-message": string;
|
|
2080
2038
|
"select-cache-folder": string;
|
|
2039
|
+
"restart-dashboard-tour": string;
|
|
2040
|
+
"restart-editor-tour": string;
|
|
2041
|
+
"tour-reset-success": string;
|
|
2042
|
+
"storage-pipelab": string;
|
|
2043
|
+
"storage-other": string;
|
|
2044
|
+
"storage-free": string;
|
|
2045
|
+
"disk-usage": string;
|
|
2046
|
+
free: string;
|
|
2047
|
+
other: string;
|
|
2081
2048
|
};
|
|
2082
2049
|
declare namespace headers$4 {
|
|
2083
2050
|
let dashboard: string;
|
|
2084
|
-
let
|
|
2051
|
+
let pipelines: string;
|
|
2085
2052
|
let editor: string;
|
|
2086
2053
|
let billing: string;
|
|
2087
2054
|
let team: string;
|
|
@@ -2098,19 +2065,29 @@ declare namespace base$4 {
|
|
|
2098
2065
|
export let ok: string;
|
|
2099
2066
|
export let add: string;
|
|
2100
2067
|
export let search: string;
|
|
2068
|
+
export let success: string;
|
|
2069
|
+
export let error: string;
|
|
2101
2070
|
}
|
|
2102
2071
|
declare let editor_1$4: {
|
|
2103
2072
|
"invalid-file-content": string;
|
|
2104
2073
|
"welcome-back": string;
|
|
2105
|
-
"please-log-in-to-run-a-
|
|
2074
|
+
"please-log-in-to-run-a-pipeline": string;
|
|
2106
2075
|
"execution-done": string;
|
|
2107
2076
|
"your-project-has-been-executed-successfully": string;
|
|
2108
2077
|
"execution-failed": string;
|
|
2109
2078
|
"project-has-encountered-an-error": string;
|
|
2110
2079
|
"project-saved": string;
|
|
2111
2080
|
"your-project-has-be-saved-successfully": string;
|
|
2081
|
+
"view-history": string;
|
|
2112
2082
|
"add-plugin": string;
|
|
2113
2083
|
"display-advanced-nodes": string;
|
|
2084
|
+
"project-settings": string;
|
|
2085
|
+
"jit-loading-title": string;
|
|
2086
|
+
"jit-loading-subtitle": string;
|
|
2087
|
+
"jit-loading-status": string;
|
|
2088
|
+
"validation-failed": string;
|
|
2089
|
+
"validation-plugin-disabled-or-missing": string;
|
|
2090
|
+
"validation-missing-param": string;
|
|
2114
2091
|
};
|
|
2115
2092
|
declare let home$4: {
|
|
2116
2093
|
"invalid-preset": string;
|
|
@@ -2123,24 +2100,80 @@ declare let home$4: {
|
|
|
2123
2100
|
"choose-a-new-path": string;
|
|
2124
2101
|
"invalid-file-type": string;
|
|
2125
2102
|
"create-project": string;
|
|
2103
|
+
"create-pipeline": string;
|
|
2126
2104
|
"duplicate-project": string;
|
|
2105
|
+
"duplicate-pipeline": string;
|
|
2127
2106
|
"project-name": string;
|
|
2128
2107
|
"new-project": string;
|
|
2108
|
+
"new-pipeline": string;
|
|
2129
2109
|
open: string;
|
|
2110
|
+
import: string;
|
|
2111
|
+
"pipeline-name": string;
|
|
2130
2112
|
"your-projects": string;
|
|
2131
2113
|
"no-projects-yet": string;
|
|
2114
|
+
"no-pipelines-yet": string;
|
|
2115
|
+
"delete-project": string;
|
|
2116
|
+
"confirm-delete-project": string;
|
|
2117
|
+
"cannot-delete-project": string;
|
|
2118
|
+
"project-not-empty": string;
|
|
2119
|
+
transfer: string;
|
|
2120
|
+
"transfer-successful": string;
|
|
2121
|
+
"pipeline-transferred": string;
|
|
2122
|
+
"select-project": string;
|
|
2123
|
+
"build-history": string;
|
|
2124
|
+
duplicate: string;
|
|
2125
|
+
"rename-project": string;
|
|
2126
|
+
"new-project-name": string;
|
|
2127
|
+
"premium-feature": string;
|
|
2128
|
+
"migrate-warning": string;
|
|
2129
|
+
"simple-pipeline": string;
|
|
2130
|
+
"advanced-pipeline": string;
|
|
2131
|
+
"new-simple-project": string;
|
|
2132
|
+
"new-advanced-project": string;
|
|
2133
|
+
"store-project-internally": string;
|
|
2134
|
+
internal: string;
|
|
2135
|
+
"confirm-migration-message": string;
|
|
2136
|
+
"migrate-pipeline": string;
|
|
2137
|
+
"migration-success": string;
|
|
2138
|
+
"migrate-to-internal": string;
|
|
2139
|
+
"only-internal-supported-notice": string;
|
|
2140
|
+
"import-pipeline": string;
|
|
2141
|
+
"import-success": string;
|
|
2142
|
+
"failed-to-read-file": string;
|
|
2132
2143
|
};
|
|
2133
|
-
declare namespace
|
|
2134
|
-
let
|
|
2135
|
-
export { scenarios_2 as scenarios };
|
|
2144
|
+
declare namespace pipelines_1$4 {
|
|
2145
|
+
let title: string;
|
|
2136
2146
|
}
|
|
2147
|
+
declare let tour$4: {
|
|
2148
|
+
"start-tour": string;
|
|
2149
|
+
"projects-list-title": string;
|
|
2150
|
+
"projects-list-description": string;
|
|
2151
|
+
"add-project-title": string;
|
|
2152
|
+
"add-project-description": string;
|
|
2153
|
+
"new-pipeline-title": string;
|
|
2154
|
+
"new-pipeline-description": string;
|
|
2155
|
+
"project-actions-title": string;
|
|
2156
|
+
"project-actions-description": string;
|
|
2157
|
+
"editor-canvas-title": string;
|
|
2158
|
+
"editor-canvas-description": string;
|
|
2159
|
+
"editor-save-title": string;
|
|
2160
|
+
"editor-save-description": string;
|
|
2161
|
+
"editor-run-title": string;
|
|
2162
|
+
"editor-run-description": string;
|
|
2163
|
+
"editor-logs-title": string;
|
|
2164
|
+
"editor-logs-description": string;
|
|
2165
|
+
"editor-close-title": string;
|
|
2166
|
+
"editor-close-description": string;
|
|
2167
|
+
};
|
|
2137
2168
|
declare namespace __json_default_export$3 {
|
|
2138
|
-
export { settings$4 as settings, headers$4 as headers, base$4 as base, home$4 as home,
|
|
2169
|
+
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
2170
|
}
|
|
2140
2171
|
//#endregion
|
|
2141
2172
|
//#region src/i18n/pt_BR.json.d.ts
|
|
2142
2173
|
declare let settings$3: {
|
|
2143
2174
|
darkTheme: string;
|
|
2175
|
+
autosave: string;
|
|
2176
|
+
autosaveDescription: string;
|
|
2144
2177
|
language: string;
|
|
2145
2178
|
languageOptions: {
|
|
2146
2179
|
"en-US": string;
|
|
@@ -2161,8 +2194,6 @@ declare let settings$3: {
|
|
|
2161
2194
|
"community-plugins": string;
|
|
2162
2195
|
versions: string;
|
|
2163
2196
|
};
|
|
2164
|
-
clearTempFolders: string;
|
|
2165
|
-
clearTempFoldersDescription: string;
|
|
2166
2197
|
"pipeline-cache-folder": string;
|
|
2167
2198
|
"enter-or-browse-for-a-folder": string;
|
|
2168
2199
|
browse: string;
|
|
@@ -2176,10 +2207,19 @@ declare let settings$3: {
|
|
|
2176
2207
|
"failed-to-clear-cache-error-message": string;
|
|
2177
2208
|
"failed-to-reset-cache-folder-error-message": string;
|
|
2178
2209
|
"select-cache-folder": string;
|
|
2210
|
+
"restart-dashboard-tour": string;
|
|
2211
|
+
"restart-editor-tour": string;
|
|
2212
|
+
"tour-reset-success": string;
|
|
2213
|
+
"storage-pipelab": string;
|
|
2214
|
+
"storage-other": string;
|
|
2215
|
+
"storage-free": string;
|
|
2216
|
+
"disk-usage": string;
|
|
2217
|
+
free: string;
|
|
2218
|
+
other: string;
|
|
2179
2219
|
};
|
|
2180
2220
|
declare namespace headers$3 {
|
|
2181
2221
|
let dashboard: string;
|
|
2182
|
-
let
|
|
2222
|
+
let pipelines: string;
|
|
2183
2223
|
let editor: string;
|
|
2184
2224
|
let billing: string;
|
|
2185
2225
|
let team: string;
|
|
@@ -2195,17 +2235,30 @@ declare namespace base$3 {
|
|
|
2195
2235
|
export let logs: string;
|
|
2196
2236
|
export let ok: string;
|
|
2197
2237
|
export let add: string;
|
|
2238
|
+
export let search: string;
|
|
2239
|
+
export let success: string;
|
|
2240
|
+
export let error: string;
|
|
2198
2241
|
}
|
|
2199
2242
|
declare let editor_1$3: {
|
|
2200
2243
|
"invalid-file-content": string;
|
|
2201
2244
|
"welcome-back": string;
|
|
2202
|
-
"please-log-in-to-run-a-
|
|
2245
|
+
"please-log-in-to-run-a-pipeline": string;
|
|
2203
2246
|
"execution-done": string;
|
|
2204
2247
|
"your-project-has-been-executed-successfully": string;
|
|
2205
2248
|
"execution-failed": string;
|
|
2206
2249
|
"project-has-encountered-an-error": string;
|
|
2207
2250
|
"project-saved": string;
|
|
2208
2251
|
"your-project-has-be-saved-successfully": string;
|
|
2252
|
+
"view-history": string;
|
|
2253
|
+
"add-plugin": string;
|
|
2254
|
+
"display-advanced-nodes": string;
|
|
2255
|
+
"project-settings": string;
|
|
2256
|
+
"jit-loading-title": string;
|
|
2257
|
+
"jit-loading-subtitle": string;
|
|
2258
|
+
"jit-loading-status": string;
|
|
2259
|
+
"validation-failed": string;
|
|
2260
|
+
"validation-plugin-disabled-or-missing": string;
|
|
2261
|
+
"validation-missing-param": string;
|
|
2209
2262
|
};
|
|
2210
2263
|
declare let home$3: {
|
|
2211
2264
|
"invalid-preset": string;
|
|
@@ -2218,24 +2271,80 @@ declare let home$3: {
|
|
|
2218
2271
|
"choose-a-new-path": string;
|
|
2219
2272
|
"invalid-file-type": string;
|
|
2220
2273
|
"create-project": string;
|
|
2274
|
+
"create-pipeline": string;
|
|
2221
2275
|
"duplicate-project": string;
|
|
2276
|
+
"duplicate-pipeline": string;
|
|
2222
2277
|
"project-name": string;
|
|
2223
2278
|
"new-project": string;
|
|
2279
|
+
"new-pipeline": string;
|
|
2224
2280
|
open: string;
|
|
2281
|
+
import: string;
|
|
2282
|
+
"pipeline-name": string;
|
|
2225
2283
|
"your-projects": string;
|
|
2226
2284
|
"no-projects-yet": string;
|
|
2285
|
+
"no-pipelines-yet": string;
|
|
2286
|
+
"delete-project": string;
|
|
2287
|
+
"confirm-delete-project": string;
|
|
2288
|
+
"cannot-delete-project": string;
|
|
2289
|
+
"project-not-empty": string;
|
|
2290
|
+
transfer: string;
|
|
2291
|
+
"transfer-successful": string;
|
|
2292
|
+
"pipeline-transferred": string;
|
|
2293
|
+
"select-project": string;
|
|
2294
|
+
"build-history": string;
|
|
2295
|
+
duplicate: string;
|
|
2296
|
+
"rename-project": string;
|
|
2297
|
+
"new-project-name": string;
|
|
2298
|
+
"premium-feature": string;
|
|
2299
|
+
"migrate-warning": string;
|
|
2300
|
+
"simple-pipeline": string;
|
|
2301
|
+
"advanced-pipeline": string;
|
|
2302
|
+
"new-simple-project": string;
|
|
2303
|
+
"new-advanced-project": string;
|
|
2304
|
+
"store-project-internally": string;
|
|
2305
|
+
internal: string;
|
|
2306
|
+
"confirm-migration-message": string;
|
|
2307
|
+
"migrate-pipeline": string;
|
|
2308
|
+
"migration-success": string;
|
|
2309
|
+
"migrate-to-internal": string;
|
|
2310
|
+
"only-internal-supported-notice": string;
|
|
2311
|
+
"import-pipeline": string;
|
|
2312
|
+
"import-success": string;
|
|
2313
|
+
"failed-to-read-file": string;
|
|
2227
2314
|
};
|
|
2228
|
-
declare namespace
|
|
2229
|
-
let
|
|
2230
|
-
export { scenarios_2 as scenarios };
|
|
2315
|
+
declare namespace pipelines_1$3 {
|
|
2316
|
+
let title: string;
|
|
2231
2317
|
}
|
|
2318
|
+
declare let tour$3: {
|
|
2319
|
+
"start-tour": string;
|
|
2320
|
+
"projects-list-title": string;
|
|
2321
|
+
"projects-list-description": string;
|
|
2322
|
+
"add-project-title": string;
|
|
2323
|
+
"add-project-description": string;
|
|
2324
|
+
"new-pipeline-title": string;
|
|
2325
|
+
"new-pipeline-description": string;
|
|
2326
|
+
"project-actions-title": string;
|
|
2327
|
+
"project-actions-description": string;
|
|
2328
|
+
"editor-canvas-title": string;
|
|
2329
|
+
"editor-canvas-description": string;
|
|
2330
|
+
"editor-save-title": string;
|
|
2331
|
+
"editor-save-description": string;
|
|
2332
|
+
"editor-run-title": string;
|
|
2333
|
+
"editor-run-description": string;
|
|
2334
|
+
"editor-logs-title": string;
|
|
2335
|
+
"editor-logs-description": string;
|
|
2336
|
+
"editor-close-title": string;
|
|
2337
|
+
"editor-close-description": string;
|
|
2338
|
+
};
|
|
2232
2339
|
declare namespace __json_default_export$4 {
|
|
2233
|
-
export { settings$3 as settings, headers$3 as headers, base$3 as base, home$3 as home,
|
|
2340
|
+
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
2341
|
}
|
|
2235
2342
|
//#endregion
|
|
2236
2343
|
//#region src/i18n/zh_CN.json.d.ts
|
|
2237
2344
|
declare let settings$2: {
|
|
2238
2345
|
darkTheme: string;
|
|
2346
|
+
autosave: string;
|
|
2347
|
+
autosaveDescription: string;
|
|
2239
2348
|
language: string;
|
|
2240
2349
|
languageOptions: {
|
|
2241
2350
|
"en-US": string;
|
|
@@ -2256,8 +2365,6 @@ declare let settings$2: {
|
|
|
2256
2365
|
"community-plugins": string;
|
|
2257
2366
|
versions: string;
|
|
2258
2367
|
};
|
|
2259
|
-
clearTempFolders: string;
|
|
2260
|
-
clearTempFoldersDescription: string;
|
|
2261
2368
|
"pipeline-cache-folder": string;
|
|
2262
2369
|
"enter-or-browse-for-a-folder": string;
|
|
2263
2370
|
browse: string;
|
|
@@ -2271,10 +2378,19 @@ declare let settings$2: {
|
|
|
2271
2378
|
"failed-to-clear-cache-error-message": string;
|
|
2272
2379
|
"failed-to-reset-cache-folder-error-message": string;
|
|
2273
2380
|
"select-cache-folder": string;
|
|
2381
|
+
"restart-dashboard-tour": string;
|
|
2382
|
+
"restart-editor-tour": string;
|
|
2383
|
+
"tour-reset-success": string;
|
|
2384
|
+
"storage-pipelab": string;
|
|
2385
|
+
"storage-other": string;
|
|
2386
|
+
"storage-free": string;
|
|
2387
|
+
"disk-usage": string;
|
|
2388
|
+
free: string;
|
|
2389
|
+
other: string;
|
|
2274
2390
|
};
|
|
2275
2391
|
declare namespace headers$2 {
|
|
2276
2392
|
let dashboard: string;
|
|
2277
|
-
let
|
|
2393
|
+
let pipelines: string;
|
|
2278
2394
|
let editor: string;
|
|
2279
2395
|
let billing: string;
|
|
2280
2396
|
let team: string;
|
|
@@ -2290,17 +2406,30 @@ declare namespace base$2 {
|
|
|
2290
2406
|
export let logs: string;
|
|
2291
2407
|
export let ok: string;
|
|
2292
2408
|
export let add: string;
|
|
2409
|
+
export let search: string;
|
|
2410
|
+
export let success: string;
|
|
2411
|
+
export let error: string;
|
|
2293
2412
|
}
|
|
2294
2413
|
declare let editor_1$2: {
|
|
2295
2414
|
"invalid-file-content": string;
|
|
2296
2415
|
"welcome-back": string;
|
|
2297
|
-
"please-log-in-to-run-a-
|
|
2416
|
+
"please-log-in-to-run-a-pipeline": string;
|
|
2298
2417
|
"execution-done": string;
|
|
2299
2418
|
"your-project-has-been-executed-successfully": string;
|
|
2300
2419
|
"execution-failed": string;
|
|
2301
2420
|
"project-has-encountered-an-error": string;
|
|
2302
2421
|
"project-saved": string;
|
|
2303
2422
|
"your-project-has-be-saved-successfully": string;
|
|
2423
|
+
"view-history": string;
|
|
2424
|
+
"add-plugin": string;
|
|
2425
|
+
"display-advanced-nodes": string;
|
|
2426
|
+
"project-settings": string;
|
|
2427
|
+
"jit-loading-title": string;
|
|
2428
|
+
"jit-loading-subtitle": string;
|
|
2429
|
+
"jit-loading-status": string;
|
|
2430
|
+
"validation-failed": string;
|
|
2431
|
+
"validation-plugin-disabled-or-missing": string;
|
|
2432
|
+
"validation-missing-param": string;
|
|
2304
2433
|
};
|
|
2305
2434
|
declare let home$2: {
|
|
2306
2435
|
"invalid-preset": string;
|
|
@@ -2313,24 +2442,80 @@ declare let home$2: {
|
|
|
2313
2442
|
"choose-a-new-path": string;
|
|
2314
2443
|
"invalid-file-type": string;
|
|
2315
2444
|
"create-project": string;
|
|
2445
|
+
"create-pipeline": string;
|
|
2316
2446
|
"duplicate-project": string;
|
|
2447
|
+
"duplicate-pipeline": string;
|
|
2317
2448
|
"project-name": string;
|
|
2318
2449
|
"new-project": string;
|
|
2450
|
+
"new-pipeline": string;
|
|
2319
2451
|
open: string;
|
|
2452
|
+
import: string;
|
|
2453
|
+
"pipeline-name": string;
|
|
2320
2454
|
"your-projects": string;
|
|
2321
2455
|
"no-projects-yet": string;
|
|
2456
|
+
"no-pipelines-yet": string;
|
|
2457
|
+
"delete-project": string;
|
|
2458
|
+
"confirm-delete-project": string;
|
|
2459
|
+
"cannot-delete-project": string;
|
|
2460
|
+
"project-not-empty": string;
|
|
2461
|
+
transfer: string;
|
|
2462
|
+
"transfer-successful": string;
|
|
2463
|
+
"pipeline-transferred": string;
|
|
2464
|
+
"select-project": string;
|
|
2465
|
+
"build-history": string;
|
|
2466
|
+
duplicate: string;
|
|
2467
|
+
"rename-project": string;
|
|
2468
|
+
"new-project-name": string;
|
|
2469
|
+
"premium-feature": string;
|
|
2470
|
+
"migrate-warning": string;
|
|
2471
|
+
"simple-pipeline": string;
|
|
2472
|
+
"advanced-pipeline": string;
|
|
2473
|
+
"new-simple-project": string;
|
|
2474
|
+
"new-advanced-project": string;
|
|
2475
|
+
"store-project-internally": string;
|
|
2476
|
+
internal: string;
|
|
2477
|
+
"confirm-migration-message": string;
|
|
2478
|
+
"migrate-pipeline": string;
|
|
2479
|
+
"migration-success": string;
|
|
2480
|
+
"migrate-to-internal": string;
|
|
2481
|
+
"only-internal-supported-notice": string;
|
|
2482
|
+
"import-pipeline": string;
|
|
2483
|
+
"import-success": string;
|
|
2484
|
+
"failed-to-read-file": string;
|
|
2322
2485
|
};
|
|
2323
|
-
declare namespace
|
|
2324
|
-
let
|
|
2325
|
-
export { scenarios_2 as scenarios };
|
|
2486
|
+
declare namespace pipelines_1$2 {
|
|
2487
|
+
let title: string;
|
|
2326
2488
|
}
|
|
2489
|
+
declare let tour$2: {
|
|
2490
|
+
"start-tour": string;
|
|
2491
|
+
"projects-list-title": string;
|
|
2492
|
+
"projects-list-description": string;
|
|
2493
|
+
"add-project-title": string;
|
|
2494
|
+
"add-project-description": string;
|
|
2495
|
+
"new-pipeline-title": string;
|
|
2496
|
+
"new-pipeline-description": string;
|
|
2497
|
+
"project-actions-title": string;
|
|
2498
|
+
"project-actions-description": string;
|
|
2499
|
+
"editor-canvas-title": string;
|
|
2500
|
+
"editor-canvas-description": string;
|
|
2501
|
+
"editor-save-title": string;
|
|
2502
|
+
"editor-save-description": string;
|
|
2503
|
+
"editor-run-title": string;
|
|
2504
|
+
"editor-run-description": string;
|
|
2505
|
+
"editor-logs-title": string;
|
|
2506
|
+
"editor-logs-description": string;
|
|
2507
|
+
"editor-close-title": string;
|
|
2508
|
+
"editor-close-description": string;
|
|
2509
|
+
};
|
|
2327
2510
|
declare namespace __json_default_export$5 {
|
|
2328
|
-
export { settings$2 as settings, headers$2 as headers, base$2 as base, home$2 as home,
|
|
2511
|
+
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
2512
|
}
|
|
2330
2513
|
//#endregion
|
|
2331
2514
|
//#region src/i18n/es_ES.json.d.ts
|
|
2332
2515
|
declare let settings$1: {
|
|
2333
2516
|
darkTheme: string;
|
|
2517
|
+
autosave: string;
|
|
2518
|
+
autosaveDescription: string;
|
|
2334
2519
|
language: string;
|
|
2335
2520
|
languageOptions: {
|
|
2336
2521
|
"en-US": string;
|
|
@@ -2351,8 +2536,6 @@ declare let settings$1: {
|
|
|
2351
2536
|
"community-plugins": string;
|
|
2352
2537
|
versions: string;
|
|
2353
2538
|
};
|
|
2354
|
-
clearTempFolders: string;
|
|
2355
|
-
clearTempFoldersDescription: string;
|
|
2356
2539
|
"pipeline-cache-folder": string;
|
|
2357
2540
|
"enter-or-browse-for-a-folder": string;
|
|
2358
2541
|
browse: string;
|
|
@@ -2366,10 +2549,19 @@ declare let settings$1: {
|
|
|
2366
2549
|
"failed-to-clear-cache-error-message": string;
|
|
2367
2550
|
"failed-to-reset-cache-folder-error-message": string;
|
|
2368
2551
|
"select-cache-folder": string;
|
|
2552
|
+
"restart-dashboard-tour": string;
|
|
2553
|
+
"restart-editor-tour": string;
|
|
2554
|
+
"tour-reset-success": string;
|
|
2555
|
+
"storage-pipelab": string;
|
|
2556
|
+
"storage-other": string;
|
|
2557
|
+
"storage-free": string;
|
|
2558
|
+
"disk-usage": string;
|
|
2559
|
+
free: string;
|
|
2560
|
+
other: string;
|
|
2369
2561
|
};
|
|
2370
2562
|
declare namespace headers$1 {
|
|
2371
2563
|
let dashboard: string;
|
|
2372
|
-
let
|
|
2564
|
+
let pipelines: string;
|
|
2373
2565
|
let editor: string;
|
|
2374
2566
|
let billing: string;
|
|
2375
2567
|
let team: string;
|
|
@@ -2385,17 +2577,30 @@ declare namespace base$1 {
|
|
|
2385
2577
|
export let logs: string;
|
|
2386
2578
|
export let ok: string;
|
|
2387
2579
|
export let add: string;
|
|
2580
|
+
export let search: string;
|
|
2581
|
+
export let success: string;
|
|
2582
|
+
export let error: string;
|
|
2388
2583
|
}
|
|
2389
2584
|
declare let editor_1$1: {
|
|
2390
2585
|
"invalid-file-content": string;
|
|
2391
2586
|
"welcome-back": string;
|
|
2392
|
-
"please-log-in-to-run-a-
|
|
2587
|
+
"please-log-in-to-run-a-pipeline": string;
|
|
2393
2588
|
"execution-done": string;
|
|
2394
2589
|
"your-project-has-been-executed-successfully": string;
|
|
2395
2590
|
"execution-failed": string;
|
|
2396
2591
|
"project-has-encountered-an-error": string;
|
|
2397
2592
|
"project-saved": string;
|
|
2398
2593
|
"your-project-has-be-saved-successfully": string;
|
|
2594
|
+
"view-history": string;
|
|
2595
|
+
"add-plugin": string;
|
|
2596
|
+
"display-advanced-nodes": string;
|
|
2597
|
+
"project-settings": string;
|
|
2598
|
+
"jit-loading-title": string;
|
|
2599
|
+
"jit-loading-subtitle": string;
|
|
2600
|
+
"jit-loading-status": string;
|
|
2601
|
+
"validation-failed": string;
|
|
2602
|
+
"validation-plugin-disabled-or-missing": string;
|
|
2603
|
+
"validation-missing-param": string;
|
|
2399
2604
|
};
|
|
2400
2605
|
declare let home$1: {
|
|
2401
2606
|
"invalid-preset": string;
|
|
@@ -2408,24 +2613,80 @@ declare let home$1: {
|
|
|
2408
2613
|
"choose-a-new-path": string;
|
|
2409
2614
|
"invalid-file-type": string;
|
|
2410
2615
|
"create-project": string;
|
|
2616
|
+
"create-pipeline": string;
|
|
2411
2617
|
"duplicate-project": string;
|
|
2618
|
+
"duplicate-pipeline": string;
|
|
2412
2619
|
"project-name": string;
|
|
2413
2620
|
"new-project": string;
|
|
2621
|
+
"new-pipeline": string;
|
|
2414
2622
|
open: string;
|
|
2623
|
+
import: string;
|
|
2624
|
+
"pipeline-name": string;
|
|
2415
2625
|
"your-projects": string;
|
|
2416
2626
|
"no-projects-yet": string;
|
|
2627
|
+
"no-pipelines-yet": string;
|
|
2628
|
+
"delete-project": string;
|
|
2629
|
+
"confirm-delete-project": string;
|
|
2630
|
+
"cannot-delete-project": string;
|
|
2631
|
+
"project-not-empty": string;
|
|
2632
|
+
transfer: string;
|
|
2633
|
+
"transfer-successful": string;
|
|
2634
|
+
"pipeline-transferred": string;
|
|
2635
|
+
"select-project": string;
|
|
2636
|
+
"build-history": string;
|
|
2637
|
+
duplicate: string;
|
|
2638
|
+
"rename-project": string;
|
|
2639
|
+
"new-project-name": string;
|
|
2640
|
+
"premium-feature": string;
|
|
2641
|
+
"migrate-warning": string;
|
|
2642
|
+
"simple-pipeline": string;
|
|
2643
|
+
"advanced-pipeline": string;
|
|
2644
|
+
"new-simple-project": string;
|
|
2645
|
+
"new-advanced-project": string;
|
|
2646
|
+
"store-project-internally": string;
|
|
2647
|
+
internal: string;
|
|
2648
|
+
"confirm-migration-message": string;
|
|
2649
|
+
"migrate-pipeline": string;
|
|
2650
|
+
"migration-success": string;
|
|
2651
|
+
"migrate-to-internal": string;
|
|
2652
|
+
"only-internal-supported-notice": string;
|
|
2653
|
+
"import-pipeline": string;
|
|
2654
|
+
"import-success": string;
|
|
2655
|
+
"failed-to-read-file": string;
|
|
2417
2656
|
};
|
|
2418
|
-
declare namespace
|
|
2419
|
-
let
|
|
2420
|
-
export { scenarios_2 as scenarios };
|
|
2657
|
+
declare namespace pipelines_1$1 {
|
|
2658
|
+
let title: string;
|
|
2421
2659
|
}
|
|
2660
|
+
declare let tour$1: {
|
|
2661
|
+
"start-tour": string;
|
|
2662
|
+
"projects-list-title": string;
|
|
2663
|
+
"projects-list-description": string;
|
|
2664
|
+
"add-project-title": string;
|
|
2665
|
+
"add-project-description": string;
|
|
2666
|
+
"new-pipeline-title": string;
|
|
2667
|
+
"new-pipeline-description": string;
|
|
2668
|
+
"project-actions-title": string;
|
|
2669
|
+
"project-actions-description": string;
|
|
2670
|
+
"editor-canvas-title": string;
|
|
2671
|
+
"editor-canvas-description": string;
|
|
2672
|
+
"editor-save-title": string;
|
|
2673
|
+
"editor-save-description": string;
|
|
2674
|
+
"editor-run-title": string;
|
|
2675
|
+
"editor-run-description": string;
|
|
2676
|
+
"editor-logs-title": string;
|
|
2677
|
+
"editor-logs-description": string;
|
|
2678
|
+
"editor-close-title": string;
|
|
2679
|
+
"editor-close-description": string;
|
|
2680
|
+
};
|
|
2422
2681
|
declare namespace __json_default_export$2 {
|
|
2423
|
-
export { settings$1 as settings, headers$1 as headers, base$1 as base, home$1 as home,
|
|
2682
|
+
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
2683
|
}
|
|
2425
2684
|
//#endregion
|
|
2426
2685
|
//#region src/i18n/de_DE.json.d.ts
|
|
2427
2686
|
declare let settings: {
|
|
2428
2687
|
darkTheme: string;
|
|
2688
|
+
autosave: string;
|
|
2689
|
+
autosaveDescription: string;
|
|
2429
2690
|
language: string;
|
|
2430
2691
|
languageOptions: {
|
|
2431
2692
|
"en-US": string;
|
|
@@ -2446,8 +2707,6 @@ declare let settings: {
|
|
|
2446
2707
|
"community-plugins": string;
|
|
2447
2708
|
versions: string;
|
|
2448
2709
|
};
|
|
2449
|
-
clearTempFolders: string;
|
|
2450
|
-
clearTempFoldersDescription: string;
|
|
2451
2710
|
"pipeline-cache-folder": string;
|
|
2452
2711
|
"enter-or-browse-for-a-folder": string;
|
|
2453
2712
|
browse: string;
|
|
@@ -2461,10 +2720,19 @@ declare let settings: {
|
|
|
2461
2720
|
"failed-to-clear-cache-error-message": string;
|
|
2462
2721
|
"failed-to-reset-cache-folder-error-message": string;
|
|
2463
2722
|
"select-cache-folder": string;
|
|
2723
|
+
"restart-dashboard-tour": string;
|
|
2724
|
+
"restart-editor-tour": string;
|
|
2725
|
+
"tour-reset-success": string;
|
|
2726
|
+
"storage-pipelab": string;
|
|
2727
|
+
"storage-other": string;
|
|
2728
|
+
"storage-free": string;
|
|
2729
|
+
"disk-usage": string;
|
|
2730
|
+
free: string;
|
|
2731
|
+
other: string;
|
|
2464
2732
|
};
|
|
2465
2733
|
declare namespace headers {
|
|
2466
2734
|
let dashboard: string;
|
|
2467
|
-
let
|
|
2735
|
+
let pipelines: string;
|
|
2468
2736
|
let editor: string;
|
|
2469
2737
|
let billing: string;
|
|
2470
2738
|
let team: string;
|
|
@@ -2480,17 +2748,30 @@ declare namespace base {
|
|
|
2480
2748
|
export let logs: string;
|
|
2481
2749
|
export let ok: string;
|
|
2482
2750
|
export let add: string;
|
|
2751
|
+
export let search: string;
|
|
2752
|
+
export let success: string;
|
|
2753
|
+
export let error: string;
|
|
2483
2754
|
}
|
|
2484
2755
|
declare let editor_1: {
|
|
2485
2756
|
"invalid-file-content": string;
|
|
2486
2757
|
"welcome-back": string;
|
|
2487
|
-
"please-log-in-to-run-a-
|
|
2758
|
+
"please-log-in-to-run-a-pipeline": string;
|
|
2488
2759
|
"execution-done": string;
|
|
2489
2760
|
"your-project-has-been-executed-successfully": string;
|
|
2490
2761
|
"execution-failed": string;
|
|
2491
2762
|
"project-has-encountered-an-error": string;
|
|
2492
2763
|
"project-saved": string;
|
|
2493
2764
|
"your-project-has-be-saved-successfully": string;
|
|
2765
|
+
"view-history": string;
|
|
2766
|
+
"add-plugin": string;
|
|
2767
|
+
"display-advanced-nodes": string;
|
|
2768
|
+
"project-settings": string;
|
|
2769
|
+
"jit-loading-title": string;
|
|
2770
|
+
"jit-loading-subtitle": string;
|
|
2771
|
+
"jit-loading-status": string;
|
|
2772
|
+
"validation-failed": string;
|
|
2773
|
+
"validation-plugin-disabled-or-missing": string;
|
|
2774
|
+
"validation-missing-param": string;
|
|
2494
2775
|
};
|
|
2495
2776
|
declare let home: {
|
|
2496
2777
|
"invalid-preset": string;
|
|
@@ -2503,19 +2784,73 @@ declare let home: {
|
|
|
2503
2784
|
"choose-a-new-path": string;
|
|
2504
2785
|
"invalid-file-type": string;
|
|
2505
2786
|
"create-project": string;
|
|
2787
|
+
"create-pipeline": string;
|
|
2506
2788
|
"duplicate-project": string;
|
|
2789
|
+
"duplicate-pipeline": string;
|
|
2507
2790
|
"project-name": string;
|
|
2508
2791
|
"new-project": string;
|
|
2792
|
+
"new-pipeline": string;
|
|
2509
2793
|
open: string;
|
|
2794
|
+
import: string;
|
|
2795
|
+
"pipeline-name": string;
|
|
2510
2796
|
"your-projects": string;
|
|
2511
2797
|
"no-projects-yet": string;
|
|
2798
|
+
"no-pipelines-yet": string;
|
|
2799
|
+
"delete-project": string;
|
|
2800
|
+
"confirm-delete-project": string;
|
|
2801
|
+
"cannot-delete-project": string;
|
|
2802
|
+
"project-not-empty": string;
|
|
2803
|
+
transfer: string;
|
|
2804
|
+
"transfer-successful": string;
|
|
2805
|
+
"pipeline-transferred": string;
|
|
2806
|
+
"select-project": string;
|
|
2807
|
+
"build-history": string;
|
|
2808
|
+
duplicate: string;
|
|
2809
|
+
"rename-project": string;
|
|
2810
|
+
"new-project-name": string;
|
|
2811
|
+
"premium-feature": string;
|
|
2812
|
+
"migrate-warning": string;
|
|
2813
|
+
"simple-pipeline": string;
|
|
2814
|
+
"advanced-pipeline": string;
|
|
2815
|
+
"new-simple-project": string;
|
|
2816
|
+
"new-advanced-project": string;
|
|
2817
|
+
"store-project-internally": string;
|
|
2818
|
+
internal: string;
|
|
2819
|
+
"confirm-migration-message": string;
|
|
2820
|
+
"migrate-pipeline": string;
|
|
2821
|
+
"migration-success": string;
|
|
2822
|
+
"migrate-to-internal": string;
|
|
2823
|
+
"only-internal-supported-notice": string;
|
|
2824
|
+
"import-pipeline": string;
|
|
2825
|
+
"import-success": string;
|
|
2826
|
+
"failed-to-read-file": string;
|
|
2512
2827
|
};
|
|
2513
|
-
declare namespace
|
|
2514
|
-
let
|
|
2515
|
-
export { scenarios_2 as scenarios };
|
|
2828
|
+
declare namespace pipelines_1 {
|
|
2829
|
+
let title: string;
|
|
2516
2830
|
}
|
|
2831
|
+
declare let tour: {
|
|
2832
|
+
"start-tour": string;
|
|
2833
|
+
"projects-list-title": string;
|
|
2834
|
+
"projects-list-description": string;
|
|
2835
|
+
"add-project-title": string;
|
|
2836
|
+
"add-project-description": string;
|
|
2837
|
+
"new-pipeline-title": string;
|
|
2838
|
+
"new-pipeline-description": string;
|
|
2839
|
+
"project-actions-title": string;
|
|
2840
|
+
"project-actions-description": string;
|
|
2841
|
+
"editor-canvas-title": string;
|
|
2842
|
+
"editor-canvas-description": string;
|
|
2843
|
+
"editor-save-title": string;
|
|
2844
|
+
"editor-save-description": string;
|
|
2845
|
+
"editor-run-title": string;
|
|
2846
|
+
"editor-run-description": string;
|
|
2847
|
+
"editor-logs-title": string;
|
|
2848
|
+
"editor-logs-description": string;
|
|
2849
|
+
"editor-close-title": string;
|
|
2850
|
+
"editor-close-description": string;
|
|
2851
|
+
};
|
|
2517
2852
|
declare namespace __json_default_export {
|
|
2518
|
-
export { settings, headers, base, home,
|
|
2853
|
+
export { settings, headers, base, home, pipelines_1, tour, editor_1 as editor, pipelines_1 as pipelines };
|
|
2519
2854
|
}
|
|
2520
2855
|
//#endregion
|
|
2521
2856
|
//#region src/i18n-utils.d.ts
|
|
@@ -3961,5 +4296,5 @@ declare const normalizePipelineConfig: (state: any) => boolean;
|
|
|
3961
4296
|
declare const connectionsMigrator: any;
|
|
3962
4297
|
declare const defaultConnections: any;
|
|
3963
4298
|
//#endregion
|
|
3964
|
-
export { Action, Agent, type AppConfig, type AppConfigV1, type AppConfigV2, type AppConfigV3, type AppConfigV4, type AppConfigV5, type AppConfigV6, type AppConfigV7,
|
|
4299
|
+
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, 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, 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
4300
|
//# sourceMappingURL=index.d.mts.map
|