@teambit/ripple 0.0.0-fe2dbd4f0d4ec21100d4de95313aa4e5215a3a08 → 0.0.2
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/ripple.cmd.d.ts +156 -0
- package/dist/ripple.cmd.js +531 -1
- package/dist/ripple.cmd.js.map +1 -1
- package/dist/ripple.main.runtime.js +1 -36
- package/dist/ripple.main.runtime.js.map +1 -1
- package/package.json +9 -8
- package/dist/ripple-errors.cmd.d.ts +0 -35
- package/dist/ripple-errors.cmd.js +0 -183
- package/dist/ripple-errors.cmd.js.map +0 -1
- package/dist/ripple-list.cmd.d.ts +0 -33
- package/dist/ripple-list.cmd.js +0 -165
- package/dist/ripple-list.cmd.js.map +0 -1
- package/dist/ripple-log.cmd.d.ts +0 -41
- package/dist/ripple-log.cmd.js +0 -164
- package/dist/ripple-log.cmd.js.map +0 -1
- package/dist/ripple-retry.cmd.d.ts +0 -28
- package/dist/ripple-retry.cmd.js +0 -73
- package/dist/ripple-retry.cmd.js.map +0 -1
- package/dist/ripple-stop.cmd.d.ts +0 -28
- package/dist/ripple-stop.cmd.js +0 -67
- package/dist/ripple-stop.cmd.js.map +0 -1
- /package/dist/{preview-1774903676076.js → preview-1774991821432.js} +0 -0
package/dist/ripple.cmd.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command, CommandOptions } from '@teambit/cli';
|
|
2
|
+
import type { RippleMain, RippleJob, CiGraphNode } from './ripple.main.runtime';
|
|
2
3
|
export declare class RippleCmd implements Command {
|
|
3
4
|
name: string;
|
|
4
5
|
description: string;
|
|
@@ -13,3 +14,158 @@ export declare class RippleCmd implements Command {
|
|
|
13
14
|
data: string;
|
|
14
15
|
}>;
|
|
15
16
|
}
|
|
17
|
+
export declare class RippleListCmd implements Command {
|
|
18
|
+
private ripple;
|
|
19
|
+
name: string;
|
|
20
|
+
description: string;
|
|
21
|
+
skipWorkspace: boolean;
|
|
22
|
+
remoteOp: boolean;
|
|
23
|
+
alias: string;
|
|
24
|
+
options: CommandOptions;
|
|
25
|
+
constructor(ripple: RippleMain);
|
|
26
|
+
report(args: [], flags: {
|
|
27
|
+
all?: boolean;
|
|
28
|
+
owner?: string;
|
|
29
|
+
scope?: string;
|
|
30
|
+
lane?: string;
|
|
31
|
+
user?: string;
|
|
32
|
+
status?: string;
|
|
33
|
+
limit?: string;
|
|
34
|
+
}): Promise<string>;
|
|
35
|
+
json(args: [], flags: {
|
|
36
|
+
all?: boolean;
|
|
37
|
+
owner?: string;
|
|
38
|
+
scope?: string;
|
|
39
|
+
lane?: string;
|
|
40
|
+
user?: string;
|
|
41
|
+
status?: string;
|
|
42
|
+
limit?: string;
|
|
43
|
+
}): Promise<{
|
|
44
|
+
jobs: RippleJob[];
|
|
45
|
+
}>;
|
|
46
|
+
private getFilteredJobs;
|
|
47
|
+
}
|
|
48
|
+
export declare class RippleLogCmd implements Command {
|
|
49
|
+
private ripple;
|
|
50
|
+
name: string;
|
|
51
|
+
description: string;
|
|
52
|
+
skipWorkspace: boolean;
|
|
53
|
+
remoteOp: boolean;
|
|
54
|
+
alias: string;
|
|
55
|
+
options: CommandOptions;
|
|
56
|
+
arguments: {
|
|
57
|
+
name: string;
|
|
58
|
+
description: string;
|
|
59
|
+
}[];
|
|
60
|
+
constructor(ripple: RippleMain);
|
|
61
|
+
private resolveJob;
|
|
62
|
+
report([jobId]: [string], flags: {
|
|
63
|
+
lane?: string;
|
|
64
|
+
component?: string;
|
|
65
|
+
}): Promise<string>;
|
|
66
|
+
private appendComponentDetail;
|
|
67
|
+
private appendComponentList;
|
|
68
|
+
json([jobId]: [string], flags: {
|
|
69
|
+
lane?: string;
|
|
70
|
+
component?: string;
|
|
71
|
+
}): Promise<{
|
|
72
|
+
job: RippleJob & {
|
|
73
|
+
hash?: string;
|
|
74
|
+
ciGraph?: string;
|
|
75
|
+
ciComponentGraph?: string;
|
|
76
|
+
};
|
|
77
|
+
componentBuild: import("./ripple.main.runtime").ComponentBuildSummary | null;
|
|
78
|
+
} | {
|
|
79
|
+
job: (RippleJob & {
|
|
80
|
+
hash?: string;
|
|
81
|
+
ciGraph?: string;
|
|
82
|
+
ciComponentGraph?: string;
|
|
83
|
+
}) | null;
|
|
84
|
+
componentBuild?: undefined;
|
|
85
|
+
}>;
|
|
86
|
+
}
|
|
87
|
+
export declare class RippleErrorsCmd implements Command {
|
|
88
|
+
private ripple;
|
|
89
|
+
name: string;
|
|
90
|
+
description: string;
|
|
91
|
+
skipWorkspace: boolean;
|
|
92
|
+
remoteOp: boolean;
|
|
93
|
+
alias: string;
|
|
94
|
+
options: CommandOptions;
|
|
95
|
+
arguments: {
|
|
96
|
+
name: string;
|
|
97
|
+
description: string;
|
|
98
|
+
}[];
|
|
99
|
+
constructor(ripple: RippleMain);
|
|
100
|
+
report([jobId]: [string], flags: {
|
|
101
|
+
lane?: string;
|
|
102
|
+
log?: boolean;
|
|
103
|
+
}): Promise<string>;
|
|
104
|
+
json([jobId]: [string], flags: {
|
|
105
|
+
lane?: string;
|
|
106
|
+
log?: boolean;
|
|
107
|
+
}): Promise<{
|
|
108
|
+
error: string;
|
|
109
|
+
job: null;
|
|
110
|
+
ciNodes: never[];
|
|
111
|
+
containerLogs: {};
|
|
112
|
+
} | {
|
|
113
|
+
job: any;
|
|
114
|
+
ciNodes: CiGraphNode[];
|
|
115
|
+
containerLogs: Record<string, string[]>;
|
|
116
|
+
error?: undefined;
|
|
117
|
+
}>;
|
|
118
|
+
private getErrors;
|
|
119
|
+
}
|
|
120
|
+
export declare class RippleRetryCmd implements Command {
|
|
121
|
+
private ripple;
|
|
122
|
+
name: string;
|
|
123
|
+
description: string;
|
|
124
|
+
skipWorkspace: boolean;
|
|
125
|
+
remoteOp: boolean;
|
|
126
|
+
alias: string;
|
|
127
|
+
options: CommandOptions;
|
|
128
|
+
arguments: {
|
|
129
|
+
name: string;
|
|
130
|
+
description: string;
|
|
131
|
+
}[];
|
|
132
|
+
constructor(ripple: RippleMain);
|
|
133
|
+
report([jobId]: [string], flags: {
|
|
134
|
+
lane?: string;
|
|
135
|
+
}): Promise<string>;
|
|
136
|
+
json([jobId]: [string], flags: {
|
|
137
|
+
lane?: string;
|
|
138
|
+
}): Promise<{
|
|
139
|
+
error: string;
|
|
140
|
+
job?: undefined;
|
|
141
|
+
} | {
|
|
142
|
+
job: RippleJob | null;
|
|
143
|
+
error?: undefined;
|
|
144
|
+
}>;
|
|
145
|
+
}
|
|
146
|
+
export declare class RippleStopCmd implements Command {
|
|
147
|
+
private ripple;
|
|
148
|
+
name: string;
|
|
149
|
+
description: string;
|
|
150
|
+
skipWorkspace: boolean;
|
|
151
|
+
remoteOp: boolean;
|
|
152
|
+
alias: string;
|
|
153
|
+
options: CommandOptions;
|
|
154
|
+
arguments: {
|
|
155
|
+
name: string;
|
|
156
|
+
description: string;
|
|
157
|
+
}[];
|
|
158
|
+
constructor(ripple: RippleMain);
|
|
159
|
+
report([jobId]: [string], flags: {
|
|
160
|
+
lane?: string;
|
|
161
|
+
}): Promise<string>;
|
|
162
|
+
json([jobId]: [string], flags: {
|
|
163
|
+
lane?: string;
|
|
164
|
+
}): Promise<{
|
|
165
|
+
error: string;
|
|
166
|
+
job?: undefined;
|
|
167
|
+
} | {
|
|
168
|
+
job: RippleJob | null;
|
|
169
|
+
error?: undefined;
|
|
170
|
+
}>;
|
|
171
|
+
}
|