dsh-plugin-teamflow 0.1.6 → 0.1.8
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 +51 -0
- package/README.en.md +6 -5
- package/README.md +35 -21
- package/lib/client.js +1740 -143
- package/lib/descriptors.mjs +54 -0
- package/lib/host.mjs +891 -314
- package/package.json +27 -6
package/lib/descriptors.mjs
CHANGED
|
@@ -188,6 +188,60 @@ const TEAMFLOW_DESCRIPTORS = Object.freeze([
|
|
|
188
188
|
p("sessionId")
|
|
189
189
|
],
|
|
190
190
|
result: strict
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
id: "dsh-plugin-teamflow#teamflow/products",
|
|
194
|
+
service: "teamflow",
|
|
195
|
+
namespace: "teamflow",
|
|
196
|
+
method: "products",
|
|
197
|
+
invocation: { kind: "direct" },
|
|
198
|
+
parameters: [p("sessionId")],
|
|
199
|
+
result: strict
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
id: "dsh-plugin-teamflow#teamflow/productView",
|
|
203
|
+
service: "teamflow",
|
|
204
|
+
namespace: "teamflow",
|
|
205
|
+
method: "productView",
|
|
206
|
+
invocation: { kind: "direct" },
|
|
207
|
+
parameters: [p("product")],
|
|
208
|
+
result: strict
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
id: "dsh-plugin-teamflow#teamflow/productRunDetail",
|
|
212
|
+
service: "teamflow",
|
|
213
|
+
namespace: "teamflow",
|
|
214
|
+
method: "productRunDetail",
|
|
215
|
+
invocation: { kind: "direct" },
|
|
216
|
+
parameters: [p("product"), p("runId")],
|
|
217
|
+
result: strict
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
id: "dsh-plugin-teamflow#teamflow/productStageDetail",
|
|
221
|
+
service: "teamflow",
|
|
222
|
+
namespace: "teamflow",
|
|
223
|
+
method: "productStageDetail",
|
|
224
|
+
invocation: { kind: "direct" },
|
|
225
|
+
parameters: [
|
|
226
|
+
p("product"),
|
|
227
|
+
p("runId"),
|
|
228
|
+
p("seq")
|
|
229
|
+
],
|
|
230
|
+
result: strict
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
id: "dsh-plugin-teamflow#teamflow/productItemDetail",
|
|
234
|
+
service: "teamflow",
|
|
235
|
+
namespace: "teamflow",
|
|
236
|
+
method: "productItemDetail",
|
|
237
|
+
invocation: { kind: "direct" },
|
|
238
|
+
parameters: [
|
|
239
|
+
p("product"),
|
|
240
|
+
p("kind"),
|
|
241
|
+
p("id"),
|
|
242
|
+
p("sessionId")
|
|
243
|
+
],
|
|
244
|
+
result: strict
|
|
191
245
|
}
|
|
192
246
|
]);
|
|
193
247
|
/** client 端 $mount 使用的贡献对象。 */
|