@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.
@@ -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()