@stack-spot/portal-network 0.88.0 → 0.90.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/CHANGELOG.md +14 -0
- package/dist/api/content.d.ts +54 -80
- package/dist/api/content.d.ts.map +1 -1
- package/dist/api/content.js +12 -24
- package/dist/api/content.js.map +1 -1
- package/dist/client/content.d.ts +7 -0
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/content.js +10 -1
- package/dist/client/content.js.map +1 -1
- package/package.json +1 -1
- package/src/api/content.ts +86 -132
- package/src/client/content.ts +5 -0
package/src/client/content.ts
CHANGED
|
@@ -57,6 +57,7 @@ import {
|
|
|
57
57
|
getWorkflowByStudioSlug,
|
|
58
58
|
getWorkflowDoc,
|
|
59
59
|
getWorkflowUsageSummary,
|
|
60
|
+
getWorkflowVersionUsageSummary,
|
|
60
61
|
listAccountWorkflow,
|
|
61
62
|
listActions,
|
|
62
63
|
listActions1,
|
|
@@ -464,6 +465,10 @@ class ContentClient extends ReactQueryNetworkClient {
|
|
|
464
465
|
* Get usage summary of workflow
|
|
465
466
|
*/
|
|
466
467
|
workflowUsageSummary = this.query(getWorkflowUsageSummary)
|
|
468
|
+
/**
|
|
469
|
+
* Get usage summary of workflow version
|
|
470
|
+
*/
|
|
471
|
+
workflowVersionUsageSummary = this.query(getWorkflowVersionUsageSummary)
|
|
467
472
|
}
|
|
468
473
|
|
|
469
474
|
export const contentClient = new ContentClient()
|