You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/if-run/config/strings.ts
-12Lines changed: 0 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,12 @@
1
1
exportconstSTRINGS={
2
2
MISSING_METHOD: "Initalization param 'method' is missing.",
3
3
MISSING_PATH: "Initalization param 'path' is missing.",
4
-
UNSUPPORTED_PLUGIN:
5
-
"Plugin interface doesn't implement 'execute' or 'metadata' methods.",
6
4
NOT_NATIVE_PLUGIN: (path: string)=>
7
5
`
8
6
You are using plugin ${path} which is not part of the Impact Framework standard library. You should do your own research to ensure the plugins are up to date and accurate. They may not be actively maintained.`,
9
7
INVALID_MODULE_PATH: (path: string,error?: any)=>
10
8
`Provided module \`${path}\` is invalid or not found. ${error??''}
11
9
`,
12
-
INVALID_TIME_NORMALIZATION: 'Start time or end time is missing.',
13
10
INCOMPATIBLE_RESOLUTION_WITH_INTERVAL:
14
11
'The upsampling resolution must be a divisor of the given interval, but the provided value does not satisfy this criteria.',
15
12
INCOMPATIBLE_RESOLUTION_WITH_INPUTS:
@@ -18,21 +15,14 @@ export const STRINGS = {
18
15
'The upsampling resolution must be a divisor of gaps and paddings in the time-series, but the provided values do not satisfy this criteria.',
19
16
UNEXPECTED_TIME_CONFIG:
20
17
'Unexpected node-level config provided for time-sync plugin.',
0 commit comments