@@ -131,6 +131,7 @@ type Client struct {
131
131
GroupCluster * GroupClustersService
132
132
GroupImportExport * GroupImportExportService
133
133
GroupIssueBoards * GroupIssueBoardsService
134
+ GroupIterations * GroupIterationsService
134
135
GroupLabels * GroupLabelsService
135
136
GroupMembers * GroupMembersService
136
137
GroupMilestones * GroupMilestonesService
@@ -167,6 +168,7 @@ type Client struct {
167
168
ProjectAccessTokens * ProjectAccessTokensService
168
169
ProjectCluster * ProjectClustersService
169
170
ProjectImportExport * ProjectImportExportService
171
+ ProjectIterations * ProjectIterationsService
170
172
ProjectMembers * ProjectMembersService
171
173
ProjectMirrors * ProjectMirrorService
172
174
ProjectSnippets * ProjectSnippetsService
@@ -325,6 +327,7 @@ func newClient(options ...ClientOptionFunc) (*Client, error) {
325
327
c .GroupCluster = & GroupClustersService {client : c }
326
328
c .GroupImportExport = & GroupImportExportService {client : c }
327
329
c .GroupIssueBoards = & GroupIssueBoardsService {client : c }
330
+ c .GroupIterations = & GroupIterationsService {client : c }
328
331
c .GroupLabels = & GroupLabelsService {client : c }
329
332
c .GroupMembers = & GroupMembersService {client : c }
330
333
c .GroupMilestones = & GroupMilestonesService {client : c }
@@ -361,6 +364,7 @@ func newClient(options ...ClientOptionFunc) (*Client, error) {
361
364
c .ProjectAccessTokens = & ProjectAccessTokensService {client : c }
362
365
c .ProjectCluster = & ProjectClustersService {client : c }
363
366
c .ProjectImportExport = & ProjectImportExportService {client : c }
367
+ c .ProjectIterations = & ProjectIterationsService {client : c }
364
368
c .ProjectMembers = & ProjectMembersService {client : c }
365
369
c .ProjectMirrors = & ProjectMirrorService {client : c }
366
370
c .ProjectSnippets = & ProjectSnippetsService {client : c }
0 commit comments