dsh-plugin-teamflow 0.1.7 → 0.1.9
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 +58 -0
- package/README.en.md +19 -7
- package/README.md +30 -18
- package/lib/client.js +2502 -280
- package/lib/descriptors.mjs +63 -0
- package/lib/host.mjs +3317 -796
- package/lib/store.mjs +55 -6
- package/package.json +19 -4
package/lib/descriptors.mjs
CHANGED
|
@@ -21,6 +21,15 @@ const TEAMFLOW_DESCRIPTORS = Object.freeze([
|
|
|
21
21
|
parameters: [],
|
|
22
22
|
result: strict
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
id: "dsh-plugin-teamflow#teamflow/setLocale",
|
|
26
|
+
service: "teamflow",
|
|
27
|
+
namespace: "teamflow",
|
|
28
|
+
method: "setLocale",
|
|
29
|
+
invocation: { kind: "direct" },
|
|
30
|
+
parameters: [p("locale")],
|
|
31
|
+
result: strict
|
|
32
|
+
},
|
|
24
33
|
{
|
|
25
34
|
id: "dsh-plugin-teamflow#teamflow/list",
|
|
26
35
|
service: "teamflow",
|
|
@@ -188,6 +197,60 @@ const TEAMFLOW_DESCRIPTORS = Object.freeze([
|
|
|
188
197
|
p("sessionId")
|
|
189
198
|
],
|
|
190
199
|
result: strict
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
id: "dsh-plugin-teamflow#teamflow/products",
|
|
203
|
+
service: "teamflow",
|
|
204
|
+
namespace: "teamflow",
|
|
205
|
+
method: "products",
|
|
206
|
+
invocation: { kind: "direct" },
|
|
207
|
+
parameters: [p("sessionId")],
|
|
208
|
+
result: strict
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
id: "dsh-plugin-teamflow#teamflow/productView",
|
|
212
|
+
service: "teamflow",
|
|
213
|
+
namespace: "teamflow",
|
|
214
|
+
method: "productView",
|
|
215
|
+
invocation: { kind: "direct" },
|
|
216
|
+
parameters: [p("product")],
|
|
217
|
+
result: strict
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
id: "dsh-plugin-teamflow#teamflow/productRunDetail",
|
|
221
|
+
service: "teamflow",
|
|
222
|
+
namespace: "teamflow",
|
|
223
|
+
method: "productRunDetail",
|
|
224
|
+
invocation: { kind: "direct" },
|
|
225
|
+
parameters: [p("product"), p("runId")],
|
|
226
|
+
result: strict
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
id: "dsh-plugin-teamflow#teamflow/productStageDetail",
|
|
230
|
+
service: "teamflow",
|
|
231
|
+
namespace: "teamflow",
|
|
232
|
+
method: "productStageDetail",
|
|
233
|
+
invocation: { kind: "direct" },
|
|
234
|
+
parameters: [
|
|
235
|
+
p("product"),
|
|
236
|
+
p("runId"),
|
|
237
|
+
p("seq")
|
|
238
|
+
],
|
|
239
|
+
result: strict
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
id: "dsh-plugin-teamflow#teamflow/productItemDetail",
|
|
243
|
+
service: "teamflow",
|
|
244
|
+
namespace: "teamflow",
|
|
245
|
+
method: "productItemDetail",
|
|
246
|
+
invocation: { kind: "direct" },
|
|
247
|
+
parameters: [
|
|
248
|
+
p("product"),
|
|
249
|
+
p("kind"),
|
|
250
|
+
p("id"),
|
|
251
|
+
p("sessionId")
|
|
252
|
+
],
|
|
253
|
+
result: strict
|
|
191
254
|
}
|
|
192
255
|
]);
|
|
193
256
|
/** client 端 $mount 使用的贡献对象。 */
|