@moonrepo/types 1.33.2 → 2.0.0
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/cjs/common.d.ts +9 -7
- package/cjs/common.d.ts.map +1 -1
- package/cjs/events.d.ts +29 -74
- package/cjs/events.d.ts.map +1 -1
- package/cjs/extensions-config.d.ts +26 -0
- package/cjs/extensions-config.d.ts.map +1 -0
- package/cjs/index.d.ts +3 -1
- package/cjs/index.d.ts.map +1 -1
- package/cjs/mcp.d.ts +6 -6
- package/cjs/mcp.d.ts.map +1 -1
- package/cjs/pipeline.d.ts +61 -72
- package/cjs/pipeline.d.ts.map +1 -1
- package/cjs/project-config.d.ts +129 -173
- package/cjs/project-config.d.ts.map +1 -1
- package/cjs/project.d.ts +8 -119
- package/cjs/project.d.ts.map +1 -1
- package/cjs/task.d.ts +83 -0
- package/cjs/task.d.ts.map +1 -0
- package/cjs/tasks-config.d.ts +380 -139
- package/cjs/tasks-config.d.ts.map +1 -1
- package/cjs/template-config.d.ts +24 -12
- package/cjs/template-config.d.ts.map +1 -1
- package/cjs/toolchains-config.d.ts +128 -0
- package/cjs/toolchains-config.d.ts.map +1 -0
- package/cjs/workspace-config.d.ts +381 -290
- package/cjs/workspace-config.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/common.ts +11 -9
- package/src/events.ts +30 -100
- package/src/extensions-config.ts +31 -0
- package/src/index.ts +3 -1
- package/src/mcp.ts +8 -8
- package/src/pipeline.ts +67 -82
- package/src/project-config.ts +138 -181
- package/src/project.ts +8 -140
- package/src/task.ts +106 -0
- package/src/tasks-config.ts +388 -142
- package/src/template-config.ts +24 -12
- package/src/toolchains-config.ts +143 -0
- package/src/workspace-config.ts +387 -297
- package/src/toolchain-config.ts +0 -814
package/cjs/common.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { PlatformType } from './tasks-config';
|
|
2
1
|
export type Id = string;
|
|
3
2
|
export type Nullable<T> = {
|
|
4
3
|
[K in keyof T]: T[K] | null;
|
|
@@ -7,15 +6,18 @@ export interface Duration {
|
|
|
7
6
|
secs: number;
|
|
8
7
|
nanos: number;
|
|
9
8
|
}
|
|
10
|
-
export interface Runtime {
|
|
11
|
-
platform: PlatformType;
|
|
12
|
-
requirement?: string;
|
|
13
|
-
overridden?: boolean;
|
|
14
|
-
}
|
|
15
9
|
export interface ToolchainSpec {
|
|
16
10
|
id: Id;
|
|
17
|
-
overridden: boolean;
|
|
18
11
|
req?: string | null;
|
|
19
12
|
}
|
|
20
13
|
export type ExtendsFrom = string[] | string;
|
|
14
|
+
export interface Graph<Node, Edge> {
|
|
15
|
+
nodes: Node[];
|
|
16
|
+
node_holes: string[];
|
|
17
|
+
edge_property: 'directed';
|
|
18
|
+
edges: [number, number, Edge][];
|
|
19
|
+
}
|
|
20
|
+
export interface GraphContainer<Node, Edge> {
|
|
21
|
+
graph: Graph<Node, Edge>;
|
|
22
|
+
}
|
|
21
23
|
//# sourceMappingURL=common.d.ts.map
|
package/cjs/common.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../src/common.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../src/common.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,EAAE,GAAG,MAAM,CAAC;AAExB,MAAM,MAAM,QAAQ,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI;CAAE,CAAC;AAE1D,MAAM,WAAW,QAAQ;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,aAAa;IAC7B,EAAE,EAAE,EAAE,CAAC;IACP,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACpB;AAED,MAAM,MAAM,WAAW,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC;AAE5C,MAAM,WAAW,KAAK,CAAC,IAAI,EAAE,IAAI;IAChC,KAAK,EAAE,IAAI,EAAE,CAAC;IACd,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,aAAa,EAAE,UAAU,CAAC;IAC1B,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;CAChC;AAED,MAAM,WAAW,cAAc,CAAC,IAAI,EAAE,IAAI;IACzC,KAAK,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;CACzB"}
|
package/cjs/events.d.ts
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import type { Duration,
|
|
1
|
+
import type { Duration, Id, ToolchainSpec } from './common';
|
|
2
2
|
import type { Action, ActionContext, ActionNode, ActionNodeRunTask, ActionPipelineStatus } from './pipeline';
|
|
3
3
|
import type { Project } from './project';
|
|
4
4
|
export interface ProviderEnvironment {
|
|
5
|
-
baseBranch
|
|
6
|
-
baseRevision
|
|
5
|
+
baseBranch?: string | null;
|
|
6
|
+
baseRevision?: string | null;
|
|
7
7
|
branch: string;
|
|
8
|
-
headRevision
|
|
8
|
+
headRevision?: string | null;
|
|
9
9
|
id: string;
|
|
10
10
|
provider: string;
|
|
11
|
-
requestId
|
|
12
|
-
requestUrl
|
|
11
|
+
requestId?: string | null;
|
|
12
|
+
requestUrl?: string | null;
|
|
13
13
|
revision: string;
|
|
14
|
-
url
|
|
14
|
+
url?: string | null;
|
|
15
15
|
}
|
|
16
16
|
export interface WebhookPayload<T extends EventType, E> {
|
|
17
17
|
createdAt: string;
|
|
18
|
-
environment
|
|
18
|
+
environment?: ProviderEnvironment | null;
|
|
19
19
|
event: E;
|
|
20
20
|
type: T;
|
|
21
21
|
uuid: string;
|
|
22
|
+
trace: string;
|
|
22
23
|
}
|
|
23
|
-
export type EventType = 'action.completed' | 'action.started' | 'dependencies.installed' | 'dependencies.installing' | 'environment.
|
|
24
|
+
export type EventType = 'action.completed' | 'action.started' | 'dependencies.installed' | 'dependencies.installing' | 'environment.initialized' | 'environment.initializing' | 'pipeline.completed' | 'pipeline.started' | 'project.synced' | 'project.syncing' | 'task.ran' | 'task.running' | 'toolchain.installed' | 'toolchain.installing' | 'workspace.synced' | 'workspace.syncing';
|
|
24
25
|
export interface EventActionStarted {
|
|
25
26
|
action: Action;
|
|
26
27
|
node: ActionNode;
|
|
@@ -28,32 +29,34 @@ export interface EventActionStarted {
|
|
|
28
29
|
export type PayloadActionStarted = WebhookPayload<'action.started', EventActionStarted>;
|
|
29
30
|
export interface EventActionCompleted {
|
|
30
31
|
action: Action;
|
|
31
|
-
error
|
|
32
|
+
error?: string | null;
|
|
32
33
|
node: ActionNode;
|
|
33
34
|
}
|
|
34
35
|
export type PayloadActionCompleted = WebhookPayload<'action.completed', EventActionCompleted>;
|
|
35
36
|
export interface EventDependenciesInstalling {
|
|
36
|
-
project
|
|
37
|
-
|
|
37
|
+
project?: Project | null;
|
|
38
|
+
root?: string | null;
|
|
39
|
+
toolchain?: Id | null;
|
|
38
40
|
}
|
|
39
41
|
export type PayloadDependenciesInstalling = WebhookPayload<'dependencies.installing', EventDependenciesInstalling>;
|
|
40
42
|
export interface EventDependenciesInstalled {
|
|
41
|
-
error
|
|
42
|
-
project
|
|
43
|
-
|
|
43
|
+
error?: string | null;
|
|
44
|
+
project?: Project | null;
|
|
45
|
+
root?: string | null;
|
|
46
|
+
toolchain?: Id | null;
|
|
44
47
|
}
|
|
45
48
|
export type PayloadDependenciesInstalled = WebhookPayload<'dependencies.installed', EventDependenciesInstalled>;
|
|
46
49
|
export interface EventEnvironmentInitializing {
|
|
47
|
-
project
|
|
50
|
+
project?: Project | null;
|
|
48
51
|
root: string;
|
|
49
|
-
toolchain:
|
|
52
|
+
toolchain: Id;
|
|
50
53
|
}
|
|
51
54
|
export type PayloadEnvironmentInitializing = WebhookPayload<'environment.initializing', EventEnvironmentInitializing>;
|
|
52
55
|
export interface EventEnvironmentInitialized {
|
|
53
|
-
error
|
|
54
|
-
project
|
|
56
|
+
error?: string | null;
|
|
57
|
+
project?: Project | null;
|
|
55
58
|
root: string;
|
|
56
|
-
toolchain:
|
|
59
|
+
toolchain: Id;
|
|
57
60
|
}
|
|
58
61
|
export type PayloadEnvironmentInitialized = WebhookPayload<'environment.initialized', EventEnvironmentInitialized>;
|
|
59
62
|
export interface EventProjectSyncing {
|
|
@@ -61,7 +64,7 @@ export interface EventProjectSyncing {
|
|
|
61
64
|
}
|
|
62
65
|
export type PayloadProjectSyncing = WebhookPayload<'project.syncing', EventProjectSyncing>;
|
|
63
66
|
export interface EventProjectSynced {
|
|
64
|
-
error
|
|
67
|
+
error?: string | null;
|
|
65
68
|
project: Project;
|
|
66
69
|
}
|
|
67
70
|
export type PayloadProjectSynced = WebhookPayload<'project.synced', EventProjectSynced>;
|
|
@@ -74,8 +77,8 @@ export type PayloadPipelineStarted = WebhookPayload<'pipeline.started', EventPip
|
|
|
74
77
|
export interface EventPipelineCompleted {
|
|
75
78
|
actions: Action[];
|
|
76
79
|
context: ActionContext;
|
|
77
|
-
duration
|
|
78
|
-
error
|
|
80
|
+
duration?: Duration | null;
|
|
81
|
+
error?: string | null;
|
|
79
82
|
status: ActionPipelineStatus;
|
|
80
83
|
}
|
|
81
84
|
export type PayloadPipelineCompleted = WebhookPayload<'pipeline.completed', EventPipelineCompleted>;
|
|
@@ -85,71 +88,23 @@ export interface EventTaskRunning {
|
|
|
85
88
|
}
|
|
86
89
|
export type PayloadTaskRunning = WebhookPayload<'task.running', EventTaskRunning>;
|
|
87
90
|
export interface EventTaskRan {
|
|
88
|
-
error
|
|
91
|
+
error?: string | null;
|
|
89
92
|
node: ActionNodeRunTask['params'];
|
|
90
93
|
target: string;
|
|
91
94
|
}
|
|
92
95
|
export type PayloadTaskRan = WebhookPayload<'task.ran', EventTaskRan>;
|
|
93
|
-
export interface EventToolInstalling {
|
|
94
|
-
runtime: Runtime;
|
|
95
|
-
}
|
|
96
|
-
export type PayloadToolInstalling = WebhookPayload<'tool.installing', EventToolInstalling>;
|
|
97
|
-
export interface EventToolInstalled {
|
|
98
|
-
error: string | null;
|
|
99
|
-
runtime: Runtime;
|
|
100
|
-
}
|
|
101
|
-
export type PayloadToolInstalled = WebhookPayload<'tool.installed', EventToolInstalled>;
|
|
102
96
|
export interface EventToolchainInstalling {
|
|
103
97
|
spec: ToolchainSpec;
|
|
104
98
|
}
|
|
105
99
|
export type PayloadToolchainInstalling = WebhookPayload<'toolchain.installing', EventToolchainInstalling>;
|
|
106
100
|
export interface EventToolchainInstalled {
|
|
107
|
-
error
|
|
101
|
+
error?: string | null;
|
|
108
102
|
spec: ToolchainSpec;
|
|
109
103
|
}
|
|
110
104
|
export type PayloadToolchainInstalled = WebhookPayload<'toolchain.installed', EventToolchainInstalled>;
|
|
111
105
|
export type PayloadWorkspaceSyncing = WebhookPayload<'workspace.syncing', {}>;
|
|
112
106
|
export interface EventWorkspaceSynced {
|
|
113
|
-
error
|
|
107
|
+
error?: string | null;
|
|
114
108
|
}
|
|
115
109
|
export type PayloadWorkspaceSynced = WebhookPayload<'workspace.synced', EventWorkspaceSynced>;
|
|
116
|
-
/** @deprecated */
|
|
117
|
-
export interface EventActionFinished {
|
|
118
|
-
action: Action;
|
|
119
|
-
error: string | null;
|
|
120
|
-
node: ActionNode;
|
|
121
|
-
}
|
|
122
|
-
/** @deprecated */
|
|
123
|
-
export type PayloadActionFinished = WebhookPayload<'action.finished', EventActionFinished>;
|
|
124
|
-
/** @deprecated */
|
|
125
|
-
export interface EventPipelineAborted {
|
|
126
|
-
error: string;
|
|
127
|
-
}
|
|
128
|
-
/** @deprecated */
|
|
129
|
-
export type PayloadPipelineAborted = WebhookPayload<'pipeline.aborted', EventPipelineAborted>;
|
|
130
|
-
/** @deprecated */
|
|
131
|
-
export interface EventPipelineFinished {
|
|
132
|
-
baselineDuration: Duration;
|
|
133
|
-
cachedCount: number;
|
|
134
|
-
context: ActionContext;
|
|
135
|
-
duration: Duration;
|
|
136
|
-
estimatedSavings: Duration | null;
|
|
137
|
-
failedCount: number;
|
|
138
|
-
passedCount: number;
|
|
139
|
-
}
|
|
140
|
-
/** @deprecated */
|
|
141
|
-
export type PayloadPipelineFinished = WebhookPayload<'pipeline.finished', EventPipelineFinished>;
|
|
142
|
-
/** @deprecated */
|
|
143
|
-
export interface EventTargetRunning {
|
|
144
|
-
target: string;
|
|
145
|
-
}
|
|
146
|
-
/** @deprecated */
|
|
147
|
-
export type PayloadTargetRunning = WebhookPayload<'target.running', EventTargetRunning>;
|
|
148
|
-
/** @deprecated */
|
|
149
|
-
export interface EventTargetRan {
|
|
150
|
-
error: string | null;
|
|
151
|
-
target: string;
|
|
152
|
-
}
|
|
153
|
-
/** @deprecated */
|
|
154
|
-
export type PayloadTargetRan = WebhookPayload<'target.ran', EventTargetRan>;
|
|
155
110
|
//# sourceMappingURL=events.d.ts.map
|
package/cjs/events.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { ExtendsFrom, Id } from './common';
|
|
2
|
+
import type { PluginLocator } from './toolchains-config';
|
|
3
|
+
/** Configures an individual extension. */
|
|
4
|
+
export interface ExtensionPluginConfig {
|
|
5
|
+
/** Arbitrary configuration that'll be passed to the WASM plugin. */
|
|
6
|
+
config: Record<string, unknown>;
|
|
7
|
+
/** Location of the WASM plugin to use. */
|
|
8
|
+
plugin: PluginLocator | null;
|
|
9
|
+
}
|
|
10
|
+
/** Configures all extensions. */
|
|
11
|
+
export interface ExtensionsConfig {
|
|
12
|
+
/** @default './cache/schemas/extensions.json' */
|
|
13
|
+
$schema?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Extends one or many extensions configuration files.
|
|
16
|
+
* Supports a relative file path or a secure URL.
|
|
17
|
+
* @since 2.0.0
|
|
18
|
+
*/
|
|
19
|
+
extends: ExtendsFrom | null;
|
|
20
|
+
/**
|
|
21
|
+
* Configures and integrates extensions into the system using
|
|
22
|
+
* a unique identifier.
|
|
23
|
+
*/
|
|
24
|
+
plugins: Record<Id, ExtensionPluginConfig>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=extensions-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extensions-config.d.ts","sourceRoot":"","sources":["../src/extensions-config.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEzD,0CAA0C;AAC1C,MAAM,WAAW,qBAAqB;IACrC,oEAAoE;IACpE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,0CAA0C;IAC1C,MAAM,EAAE,aAAa,GAAG,IAAI,CAAC;CAC7B;AAED,iCAAiC;AACjC,MAAM,WAAW,gBAAgB;IAChC,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,OAAO,EAAE,WAAW,GAAG,IAAI,CAAC;IAC5B;;;OAGG;IACH,OAAO,EAAE,MAAM,CAAC,EAAE,EAAE,qBAAqB,CAAC,CAAC;CAC3C"}
|
package/cjs/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export * from './common';
|
|
2
2
|
export * from './events';
|
|
3
|
+
export * from './extensions-config';
|
|
3
4
|
export * from './mcp';
|
|
4
5
|
export * from './pipeline';
|
|
5
6
|
export * from './project';
|
|
6
7
|
export * from './project-config';
|
|
8
|
+
export * from './task';
|
|
7
9
|
export * from './tasks-config';
|
|
8
10
|
export * from './template-config';
|
|
9
|
-
export * from './
|
|
11
|
+
export * from './toolchains-config';
|
|
10
12
|
export * from './workspace-config';
|
|
11
13
|
//# sourceMappingURL=index.d.ts.map
|
package/cjs/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC;AACpC,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC"}
|
package/cjs/mcp.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { Action } from './pipeline';
|
|
2
|
-
import type { Project,
|
|
2
|
+
import type { Project, ProjectFragment } from './project';
|
|
3
|
+
import type { Task, TaskFragment } from './task';
|
|
3
4
|
export interface GetProjectTool {
|
|
4
5
|
id: string;
|
|
5
6
|
includeDependencies?: boolean;
|
|
@@ -9,10 +10,9 @@ export interface GetProjectToolResponse {
|
|
|
9
10
|
projectDependencies?: Project[];
|
|
10
11
|
}
|
|
11
12
|
export interface GetProjectsTool {
|
|
12
|
-
includeTasks?: boolean;
|
|
13
13
|
}
|
|
14
14
|
export interface GetProjectsToolResponse {
|
|
15
|
-
projects:
|
|
15
|
+
projects: ProjectFragment[];
|
|
16
16
|
}
|
|
17
17
|
export interface GetTaskTool {
|
|
18
18
|
target: string;
|
|
@@ -26,14 +26,14 @@ export interface GetTasksTool {
|
|
|
26
26
|
includeInternal?: boolean;
|
|
27
27
|
}
|
|
28
28
|
export interface GetTasksToolResponse {
|
|
29
|
-
tasks:
|
|
29
|
+
tasks: TaskFragment[];
|
|
30
30
|
}
|
|
31
|
-
export interface
|
|
31
|
+
export interface GetChangedFilesTool {
|
|
32
32
|
base?: string;
|
|
33
33
|
head?: string;
|
|
34
34
|
remote?: boolean;
|
|
35
35
|
}
|
|
36
|
-
export interface
|
|
36
|
+
export interface GetChangedFilesToolResponse {
|
|
37
37
|
files: string[];
|
|
38
38
|
}
|
|
39
39
|
export interface SyncProjectsTool {
|
package/cjs/mcp.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp.d.ts","sourceRoot":"","sources":["../src/mcp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACzC,OAAO,KAAK,EAAE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"mcp.d.ts","sourceRoot":"","sources":["../src/mcp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACzC,OAAO,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAC1D,OAAO,KAAK,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEjD,MAAM,WAAW,cAAc;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,sBAAsB;IACtC,OAAO,EAAE,OAAO,CAAC;IACjB,mBAAmB,CAAC,EAAE,OAAO,EAAE,CAAC;CAChC;AAGD,MAAM,WAAW,eAAe;CAAG;AAEnC,MAAM,WAAW,uBAAuB;IACvC,QAAQ,EAAE,eAAe,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,WAAW;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,mBAAmB;IACnC,IAAI,EAAE,IAAI,CAAC;IACX,gBAAgB,CAAC,EAAE,IAAI,EAAE,CAAC;CAC1B;AAED,MAAM,WAAW,YAAY;IAC5B,eAAe,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,oBAAoB;IACpC,KAAK,EAAE,YAAY,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,mBAAmB;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,2BAA2B;IAC3C,KAAK,EAAE,MAAM,EAAE,CAAC;CAChB;AAED,MAAM,WAAW,gBAAgB;IAChC,GAAG,EAAE,MAAM,EAAE,CAAC;CACd;AAED,MAAM,WAAW,wBAAwB;IACxC,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,EAAE,OAAO,CAAC;CAChB;AAED,MAAM,WAAW,yBAAyB;IACzC,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,EAAE,OAAO,CAAC;CAChB"}
|
package/cjs/pipeline.d.ts
CHANGED
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
import type { Duration,
|
|
1
|
+
import type { Duration, GraphContainer, Id, ToolchainSpec } from './common';
|
|
2
|
+
import type { TaskDependencyType } from './tasks-config';
|
|
2
3
|
export type ActionPipelineStatus = 'aborted' | 'completed' | 'interrupted' | 'pending' | 'terminated';
|
|
3
|
-
export type ActionStatus = 'aborted' | 'cached-from-remote' | 'cached' | 'failed
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
duration: Duration | null;
|
|
7
|
-
exitCode: number | null;
|
|
8
|
-
finishedAt: string | null;
|
|
9
|
-
index: number;
|
|
10
|
-
startedAt: string;
|
|
11
|
-
status: ActionStatus;
|
|
12
|
-
stderr: string | null;
|
|
13
|
-
stdout: string | null;
|
|
4
|
+
export type ActionStatus = 'aborted' | 'cached-from-remote' | 'cached' | 'failed' | 'invalid' | 'passed' | 'running' | 'skipped' | 'timed-out';
|
|
5
|
+
export interface OperationBaseFileChange {
|
|
6
|
+
changedFiles?: string[];
|
|
14
7
|
}
|
|
15
|
-
export interface
|
|
8
|
+
export interface OperationBaseProcessOutput {
|
|
16
9
|
command?: string | null;
|
|
17
10
|
exitCode?: number | null;
|
|
18
11
|
stderr?: string | null;
|
|
@@ -23,7 +16,7 @@ export interface OperationMetaArchiveCreation {
|
|
|
23
16
|
}
|
|
24
17
|
export interface OperationMetaHashGeneration {
|
|
25
18
|
type: 'hash-generation';
|
|
26
|
-
hash
|
|
19
|
+
hash?: string;
|
|
27
20
|
}
|
|
28
21
|
export interface OperationMetaMutexAcquisition {
|
|
29
22
|
type: 'mutex-acquisition';
|
|
@@ -31,52 +24,78 @@ export interface OperationMetaMutexAcquisition {
|
|
|
31
24
|
export interface OperationMetaNoOperation {
|
|
32
25
|
type: 'no-operation';
|
|
33
26
|
}
|
|
34
|
-
export interface OperationMetaOutputHydration extends
|
|
27
|
+
export interface OperationMetaOutputHydration extends OperationBaseProcessOutput {
|
|
35
28
|
type: 'output-hydration';
|
|
36
29
|
}
|
|
37
|
-
export interface
|
|
30
|
+
export interface OperationMetaProcessExecution extends OperationBaseProcessOutput {
|
|
31
|
+
type: 'process-execution';
|
|
32
|
+
}
|
|
33
|
+
export interface OperationMetaSetupOperation extends OperationBaseFileChange {
|
|
34
|
+
type: 'setup-operation';
|
|
35
|
+
}
|
|
36
|
+
export interface OperationMetaSyncOperation extends OperationBaseFileChange {
|
|
38
37
|
type: 'sync-operation';
|
|
39
|
-
label: string;
|
|
40
38
|
}
|
|
41
|
-
export interface OperationMetaTaskExecution extends
|
|
39
|
+
export interface OperationMetaTaskExecution extends OperationBaseProcessOutput {
|
|
42
40
|
type: 'task-execution';
|
|
43
41
|
}
|
|
44
|
-
export type OperationMeta = OperationMetaArchiveCreation | OperationMetaHashGeneration | OperationMetaMutexAcquisition | OperationMetaNoOperation | OperationMetaOutputHydration | OperationMetaSyncOperation | OperationMetaTaskExecution;
|
|
42
|
+
export type OperationMeta = OperationMetaArchiveCreation | OperationMetaHashGeneration | OperationMetaMutexAcquisition | OperationMetaNoOperation | OperationMetaOutputHydration | OperationMetaProcessExecution | OperationMetaSetupOperation | OperationMetaSyncOperation | OperationMetaTaskExecution;
|
|
45
43
|
export interface Operation {
|
|
46
|
-
duration
|
|
47
|
-
finishedAt
|
|
44
|
+
duration?: Duration | null;
|
|
45
|
+
finishedAt?: string | null;
|
|
46
|
+
id?: Id | null;
|
|
48
47
|
meta: OperationMeta;
|
|
48
|
+
operations?: Operation[];
|
|
49
|
+
plugin?: Id | null;
|
|
49
50
|
startedAt: string;
|
|
50
51
|
status: ActionStatus;
|
|
51
52
|
}
|
|
52
53
|
export interface Action {
|
|
53
54
|
allowFailure: boolean;
|
|
54
|
-
/** @deprecated */
|
|
55
|
-
attempts: Attempt[] | null;
|
|
56
55
|
createdAt: string;
|
|
57
|
-
duration
|
|
58
|
-
error
|
|
59
|
-
finishedAt
|
|
56
|
+
duration?: Duration | null;
|
|
57
|
+
error?: string | null;
|
|
58
|
+
finishedAt?: string | null;
|
|
60
59
|
flaky: boolean;
|
|
61
60
|
label: string;
|
|
62
61
|
node: ActionNode;
|
|
63
62
|
nodeIndex: number;
|
|
64
63
|
operations: Operation[];
|
|
65
|
-
startedAt
|
|
64
|
+
startedAt?: string | null;
|
|
66
65
|
status: ActionStatus;
|
|
67
66
|
}
|
|
68
67
|
export interface TargetState {
|
|
69
68
|
state: 'failed' | 'passed' | 'passthrough' | 'skipped';
|
|
70
69
|
hash?: string;
|
|
71
70
|
}
|
|
71
|
+
export interface AffectedProjectState {
|
|
72
|
+
files?: string[];
|
|
73
|
+
tasks?: string[];
|
|
74
|
+
upstream?: Id[];
|
|
75
|
+
downstream?: Id[];
|
|
76
|
+
other: boolean;
|
|
77
|
+
}
|
|
78
|
+
export interface AffectedTaskState {
|
|
79
|
+
env?: string[];
|
|
80
|
+
files?: string[];
|
|
81
|
+
projects?: string[];
|
|
82
|
+
upstream?: Id[];
|
|
83
|
+
downstream?: Id[];
|
|
84
|
+
other: boolean;
|
|
85
|
+
}
|
|
86
|
+
export interface Affected {
|
|
87
|
+
projects: Record<string, AffectedProjectState>;
|
|
88
|
+
tasks: Record<string, AffectedTaskState>;
|
|
89
|
+
shouldCheck: boolean;
|
|
90
|
+
}
|
|
72
91
|
export interface ActionContext {
|
|
73
|
-
|
|
92
|
+
affected?: Affected | null;
|
|
93
|
+
changedFiles: string[];
|
|
74
94
|
initialTargets: string[];
|
|
75
95
|
passthroughArgs: string[];
|
|
76
96
|
primaryTargets: string[];
|
|
77
97
|
profile: 'cpu' | 'heap' | null;
|
|
78
98
|
targetStates: Record<string, TargetState>;
|
|
79
|
-
touchedFiles: string[];
|
|
80
99
|
}
|
|
81
100
|
export interface RunReport {
|
|
82
101
|
actions: Action[];
|
|
@@ -92,30 +111,18 @@ export interface RunReport {
|
|
|
92
111
|
total: Duration;
|
|
93
112
|
}>;
|
|
94
113
|
};
|
|
114
|
+
status: ActionPipelineStatus;
|
|
95
115
|
}
|
|
96
|
-
export type ActionNode = ActionNodeInstallDependencies |
|
|
116
|
+
export type ActionNode = ActionNodeInstallDependencies | ActionNodeRunTask | ActionNodeSetupEnvironment | ActionNodeSetupProto | ActionNodeSetupToolchain | ActionNodeSyncProject | ActionNodeSyncWorkspace;
|
|
97
117
|
export interface ActionNodeInstallDependencies {
|
|
98
118
|
action: 'install-dependencies';
|
|
99
119
|
params: {
|
|
100
|
-
|
|
120
|
+
members?: string[] | null;
|
|
121
|
+
projectId?: Id | null;
|
|
101
122
|
root: string;
|
|
102
123
|
toolchainId: Id;
|
|
103
124
|
};
|
|
104
125
|
}
|
|
105
|
-
export interface ActionNodeInstallWorkspaceDeps {
|
|
106
|
-
action: 'install-workspace-deps';
|
|
107
|
-
params: {
|
|
108
|
-
runtime: Runtime;
|
|
109
|
-
root: string;
|
|
110
|
-
};
|
|
111
|
-
}
|
|
112
|
-
export interface ActionNodeInstallProjectDeps {
|
|
113
|
-
action: 'install-project-deps';
|
|
114
|
-
params: {
|
|
115
|
-
runtime: Runtime;
|
|
116
|
-
projectId: Id;
|
|
117
|
-
};
|
|
118
|
-
}
|
|
119
126
|
export interface ActionNodeRunTask {
|
|
120
127
|
action: 'run-task';
|
|
121
128
|
params: {
|
|
@@ -123,34 +130,29 @@ export interface ActionNodeRunTask {
|
|
|
123
130
|
env: Record<string, string>;
|
|
124
131
|
interactive: boolean;
|
|
125
132
|
persistent: boolean;
|
|
126
|
-
|
|
133
|
+
priority: number;
|
|
127
134
|
target: string;
|
|
128
|
-
id
|
|
135
|
+
id?: number | null;
|
|
129
136
|
};
|
|
130
137
|
}
|
|
131
138
|
export interface ActionNodeSetupEnvironment {
|
|
132
|
-
action: '
|
|
139
|
+
action: 'setup-environment';
|
|
133
140
|
params: {
|
|
134
|
-
projectId
|
|
141
|
+
projectId?: Id | null;
|
|
135
142
|
root: string;
|
|
136
143
|
toolchainId: Id;
|
|
137
144
|
};
|
|
138
145
|
}
|
|
139
|
-
export interface ActionNodeSetupToolchainLegacy {
|
|
140
|
-
action: 'setup-toolchain-legacy';
|
|
141
|
-
params: {
|
|
142
|
-
runtime: Runtime;
|
|
143
|
-
};
|
|
144
|
-
}
|
|
145
146
|
export interface ActionNodeSetupProto {
|
|
146
147
|
action: 'setup-proto';
|
|
147
|
-
params: {
|
|
148
|
+
params: {
|
|
149
|
+
version: string;
|
|
150
|
+
};
|
|
148
151
|
}
|
|
149
152
|
export interface ActionNodeSetupToolchain {
|
|
150
153
|
action: 'setup-toolchain';
|
|
151
154
|
params: {
|
|
152
|
-
|
|
153
|
-
spec: ToolchainSpec;
|
|
155
|
+
toolchain: ToolchainSpec;
|
|
154
156
|
};
|
|
155
157
|
}
|
|
156
158
|
export interface ActionNodeSyncProject {
|
|
@@ -162,18 +164,5 @@ export interface ActionNodeSyncProject {
|
|
|
162
164
|
export interface ActionNodeSyncWorkspace {
|
|
163
165
|
action: 'sync-workspace';
|
|
164
166
|
}
|
|
165
|
-
export
|
|
166
|
-
id: number;
|
|
167
|
-
label: string;
|
|
168
|
-
}
|
|
169
|
-
export interface ActionGraphEdge {
|
|
170
|
-
id: number;
|
|
171
|
-
label: string;
|
|
172
|
-
source: number;
|
|
173
|
-
target: number;
|
|
174
|
-
}
|
|
175
|
-
export interface ActionGraph {
|
|
176
|
-
edges: ActionGraphEdge[];
|
|
177
|
-
nodes: ActionGraphNode[];
|
|
178
|
-
}
|
|
167
|
+
export type ActionGraph = GraphContainer<ActionNode, TaskDependencyType>;
|
|
179
168
|
//# sourceMappingURL=pipeline.d.ts.map
|
package/cjs/pipeline.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../src/pipeline.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,EAAE,EAAE,
|
|
1
|
+
{"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../src/pipeline.ts"],"names":[],"mappings":"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"}
|