@@ -16,6 +16,7 @@ import (
1616
1717 "github.com/bcmi-labs/orchestrator/internal/api/handlers"
1818 "github.com/bcmi-labs/orchestrator/internal/orchestrator"
19+ "github.com/bcmi-labs/orchestrator/internal/orchestrator/bricks"
1920 "github.com/bcmi-labs/orchestrator/internal/update"
2021)
2122
@@ -527,7 +528,7 @@ Contains a JSON object with the details of an error.
527528 })(nil ),
528529 CustomSuccessResponse : & CustomResponseDef {
529530 ContentType : "application/json" ,
530- DataStructure : orchestrator .BrickDetailsResult {},
531+ DataStructure : bricks .BrickDetailsResult {},
531532 Description : "Successful response" ,
532533 StatusCode : http .StatusOK ,
533534 },
@@ -546,7 +547,7 @@ Contains a JSON object with the details of an error.
546547 Request : nil ,
547548 CustomSuccessResponse : & CustomResponseDef {
548549 ContentType : "application/json" ,
549- DataStructure : orchestrator .BrickListResult {},
550+ DataStructure : bricks .BrickListResult {},
550551 Description : "Successful response" ,
551552 StatusCode : http .StatusOK ,
552553 },
@@ -756,7 +757,7 @@ Contains a JSON object with the details of an error.
756757 })(nil ),
757758 CustomSuccessResponse : & CustomResponseDef {
758759 ContentType : "application/json" ,
759- DataStructure : orchestrator .AppBrickInstancesResult {},
760+ DataStructure : bricks .AppBrickInstancesResult {},
760761 Description : "Successful response" ,
761762 StatusCode : http .StatusOK ,
762763 },
@@ -778,7 +779,7 @@ Contains a JSON object with the details of an error.
778779 })(nil ),
779780 CustomSuccessResponse : & CustomResponseDef {
780781 ContentType : "application/json" ,
781- DataStructure : orchestrator .BrickInstance {},
782+ DataStructure : bricks .BrickInstance {},
782783 Description : "Successful response" ,
783784 StatusCode : http .StatusOK ,
784785 },
@@ -799,7 +800,7 @@ Contains a JSON object with the details of an error.
799800 ID string `path:"appID" description:"application identifier."`
800801 BrickID string `path:"brickID" description:"brick identifier."`
801802 })(nil ),
802- Request : orchestrator .BrickCreateUpdateRequest {},
803+ Request : bricks .BrickCreateUpdateRequest {},
803804 CustomSuccessResponse : & CustomResponseDef {
804805 Description : "Successful response" ,
805806 StatusCode : http .StatusOK ,
@@ -821,7 +822,7 @@ Contains a JSON object with the details of an error.
821822 ID string `path:"appID" description:"application identifier."`
822823 BrickID string `path:"brickID" description:"brick identifier."`
823824 })(nil ),
824- Request : orchestrator .BrickCreateUpdateRequest {},
825+ Request : bricks .BrickCreateUpdateRequest {},
825826 CustomSuccessResponse : & CustomResponseDef {
826827 Description : "Successful response" ,
827828 StatusCode : http .StatusOK ,
0 commit comments