@@ -15,6 +15,7 @@ let package = Package(
15
15
. library( name: " GitHubRestAPIActivity " , targets: [ " GitHubRestAPIActivity " ] ) ,
16
16
. library( name: " GitHubRestAPIApps " , targets: [ " GitHubRestAPIApps " ] ) ,
17
17
. library( name: " GitHubRestAPIBilling " , targets: [ " GitHubRestAPIBilling " ] ) ,
18
+ . library( name: " GitHubRestAPICampaigns " , targets: [ " GitHubRestAPICampaigns " ] ) ,
18
19
. library( name: " GitHubRestAPIChecks " , targets: [ " GitHubRestAPIChecks " ] ) ,
19
20
. library( name: " GitHubRestAPIClassroom " , targets: [ " GitHubRestAPIClassroom " ] ) ,
20
21
. library( name: " GitHubRestAPICode_Scanning " , targets: [ " GitHubRestAPICode_Scanning " ] ) ,
@@ -30,6 +31,7 @@ let package = Package(
30
31
. library( name: " GitHubRestAPIGists " , targets: [ " GitHubRestAPIGists " ] ) ,
31
32
. library( name: " GitHubRestAPIGit " , targets: [ " GitHubRestAPIGit " ] ) ,
32
33
. library( name: " GitHubRestAPIGitignore " , targets: [ " GitHubRestAPIGitignore " ] ) ,
34
+ . library( name: " GitHubRestAPIHosted_Compute " , targets: [ " GitHubRestAPIHosted_Compute " ] ) ,
33
35
. library( name: " GitHubRestAPIInteractions " , targets: [ " GitHubRestAPIInteractions " ] ) ,
34
36
. library( name: " GitHubRestAPIIssues " , targets: [ " GitHubRestAPIIssues " ] ) ,
35
37
. library( name: " GitHubRestAPILicenses " , targets: [ " GitHubRestAPILicenses " ] ) ,
@@ -89,6 +91,14 @@ let package = Package(
89
91
] ,
90
92
path: " Sources/billing "
91
93
) ,
94
+ . target(
95
+ name: " GitHubRestAPICampaigns " ,
96
+ dependencies: [
97
+ . product( name: " OpenAPIRuntime " , package : " swift-openapi-runtime " ) ,
98
+ . product( name: " OpenAPIURLSession " , package : " swift-openapi-urlsession " ) ,
99
+ ] ,
100
+ path: " Sources/campaigns "
101
+ ) ,
92
102
. target(
93
103
name: " GitHubRestAPIChecks " ,
94
104
dependencies: [
@@ -209,6 +219,14 @@ let package = Package(
209
219
] ,
210
220
path: " Sources/gitignore "
211
221
) ,
222
+ . target(
223
+ name: " GitHubRestAPIHosted_Compute " ,
224
+ dependencies: [
225
+ . product( name: " OpenAPIRuntime " , package : " swift-openapi-runtime " ) ,
226
+ . product( name: " OpenAPIURLSession " , package : " swift-openapi-urlsession " ) ,
227
+ ] ,
228
+ path: " Sources/hosted-compute "
229
+ ) ,
212
230
. target(
213
231
name: " GitHubRestAPIInteractions " ,
214
232
dependencies: [
0 commit comments