Versions in this module Expand all Collapse all v0 v0.2.21 Aug 13, 2021 v0.2.20 Aug 10, 2021 v0.2.19 Jul 28, 2021 v0.2.18 Jul 20, 2021 v0.2.17 Jul 16, 2021 v0.2.16 Jul 9, 2021 v0.2.15 Jul 2, 2021 v0.2.14 Jun 28, 2021 v0.2.13 Jun 22, 2021 v0.2.12 Jun 1, 2021 v0.2.11 May 24, 2021 v0.2.10 May 23, 2021 v0.2.9 May 5, 2021 v0.2.8 Apr 23, 2021 v0.2.7 Apr 12, 2021 v0.2.6 Apr 7, 2021 Changes in this version + type ChartGroup struct + ChartGroupEntries []*ChartGroupEntry + Description string + Id int + Name string + TableName struct{} + type ChartGroupDeployment struct + ChartGroupEntryId int + ChartGroupId int + Deleted bool + GroupInstallationId string + Id int + InstalledAppId int + TableName struct{} + type ChartGroupDeploymentRepository interface + FindByChartGroupId func(chartGroupId int) ([]*ChartGroupDeployment, error) + FindByInstalledAppId func(installedAppId int) (*ChartGroupDeployment, error) + Save func(tx *pg.Tx, chartGroupDeployment *ChartGroupDeployment) error + Update func(model *ChartGroupDeployment) (*ChartGroupDeployment, error) + type ChartGroupDeploymentRepositoryImpl struct + Logger *zap.SugaredLogger + func NewChartGroupDeploymentRepositoryImpl(dbConnection *pg.DB, Logger *zap.SugaredLogger) *ChartGroupDeploymentRepositoryImpl + func (impl *ChartGroupDeploymentRepositoryImpl) FindByChartGroupId(chartGroupId int) ([]*ChartGroupDeployment, error) + func (impl *ChartGroupDeploymentRepositoryImpl) FindByInstalledAppId(installedAppId int) (*ChartGroupDeployment, error) + func (impl *ChartGroupDeploymentRepositoryImpl) Save(tx *pg.Tx, chartGroupDeployment *ChartGroupDeployment) error + func (impl *ChartGroupDeploymentRepositoryImpl) Update(model *ChartGroupDeployment) (*ChartGroupDeployment, error) + type ChartGroupEntriesRepository interface + FindEntriesWithChartMetaByChartGroupId func(chartGroupId []int) ([]*ChartGroupEntry, error) + Save func(model *ChartGroupEntry) (*ChartGroupEntry, error) + SaveAndUpdateInTransaction func(saveEntry []*ChartGroupEntry, updateEntry []*ChartGroupEntry) ([]*ChartGroupEntry, error) + type ChartGroupEntriesRepositoryImpl struct + Logger *zap.SugaredLogger + func NewChartGroupEntriesRepositoryImpl(dbConnection *pg.DB, Logger *zap.SugaredLogger) *ChartGroupEntriesRepositoryImpl + func (impl *ChartGroupEntriesRepositoryImpl) FindEntriesWithChartMetaByChartGroupId(chartGroupId []int) ([]*ChartGroupEntry, error) + func (impl *ChartGroupEntriesRepositoryImpl) Save(model *ChartGroupEntry) (*ChartGroupEntry, error) + func (impl *ChartGroupEntriesRepositoryImpl) SaveAndUpdateInTransaction(saveEntry []*ChartGroupEntry, updateEntry []*ChartGroupEntry) ([]*ChartGroupEntry, error) + type ChartGroupEntry struct + AppStoreApplicationVersion *appstore.AppStoreApplicationVersion + AppStoreApplicationVersionId int + AppStoreValuesVersion *appstore.AppStoreVersionValues + AppStoreValuesVersionId int + ChartGroupId int + Deleted bool + Id int + TableName struct{} + type ChartGroupReposotory interface + FindById func(chartGroupId int) (*ChartGroup, error) + FindByIdWithEntries func(chertGroupId int) (*ChartGroup, error) + GetAll func(max int) ([]*ChartGroup, error) + Save func(model *ChartGroup) (*ChartGroup, error) + Update func(model *ChartGroup) (*ChartGroup, error) + type ChartGroupReposotoryImpl struct + Logger *zap.SugaredLogger + func NewChartGroupReposotoryImpl(dbConnection *pg.DB, Logger *zap.SugaredLogger) *ChartGroupReposotoryImpl + func (impl *ChartGroupReposotoryImpl) FindById(chartGroupId int) (*ChartGroup, error) + func (impl *ChartGroupReposotoryImpl) FindByIdWithEntries(chertGroupId int) (*ChartGroup, error) + func (impl *ChartGroupReposotoryImpl) GetAll(max int) ([]*ChartGroup, error) + func (impl *ChartGroupReposotoryImpl) Save(model *ChartGroup) (*ChartGroup, error) + func (impl *ChartGroupReposotoryImpl) Update(model *ChartGroup) (*ChartGroup, error)