@stack-spot/portal-network 0.236.0 → 0.238.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 +22 -0
- package/dist/api/cloudPlatform.d.ts +94 -816
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +33 -599
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/workspaceManager.d.ts +28 -1
- package/dist/api/workspaceManager.d.ts.map +1 -1
- package/dist/api/workspaceManager.js +20 -0
- package/dist/api/workspaceManager.js.map +1 -1
- package/dist/apis.json +1 -1
- package/dist/client/cloud-platform.d.ts +470 -942
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +460 -963
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/workspace-manager.d.ts +16 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +19 -1
- package/dist/client/workspace-manager.js.map +1 -1
- package/package.json +1 -1
- package/src/api/cloudPlatform.ts +150 -1546
- package/src/api/workspaceManager.ts +48 -3
- package/src/api-docs/cloud-platform-docs-prd.json +1681 -7331
- package/src/api-docs/cloud-platform-docs-stg.json +1430 -6671
- package/src/apis.json +1 -1
- package/src/client/cloud-platform.ts +417 -694
- package/src/client/workspace-manager.ts +10 -0
|
@@ -58,6 +58,8 @@ import {
|
|
|
58
58
|
sharedInfraControllergetSharedInfraAppliedPlugins,
|
|
59
59
|
sharedInfraControllergetSharedInfraDependencies,
|
|
60
60
|
sharedInfraControllergetSharedInfraFilters,
|
|
61
|
+
terraformExportControllerdispatchTerraformExportByApplication,
|
|
62
|
+
terraformExportControllerdispatchTerraformExportBySharedInfra,
|
|
61
63
|
updateInfrastructureControllergetApplicationBranches,
|
|
62
64
|
updateInfrastructureControllergetApplicationInfraPlugins,
|
|
63
65
|
updateInfrastructureControllergetSharedInfraBranches,
|
|
@@ -587,6 +589,14 @@ class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
587
589
|
* Create workflow in an account
|
|
588
590
|
*/
|
|
589
591
|
createWorkflowAccount = this.mutation(workflowAccountControllercreateAccountWorkflow)
|
|
592
|
+
/**
|
|
593
|
+
* Dispatch terraform export workflow by shared infrastructure
|
|
594
|
+
*/
|
|
595
|
+
dispatchInfraTerraform = this.mutation(terraformExportControllerdispatchTerraformExportBySharedInfra)
|
|
596
|
+
/**
|
|
597
|
+
* Dispatch terraform export workflow by application
|
|
598
|
+
*/
|
|
599
|
+
dispatchAppTerraform = this.mutation(terraformExportControllerdispatchTerraformExportByApplication)
|
|
590
600
|
}
|
|
591
601
|
|
|
592
602
|
export const workspaceManagerClient = new WorkspaceManagerClient()
|