gitabu 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +3 -0
  3. data/.rubocop.yml +33 -0
  4. data/CHANGELOG.md +3 -0
  5. data/Gemfile +10 -0
  6. data/Gemfile.lock +65 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +42 -0
  9. data/Rakefile +12 -0
  10. data/gitabu.gemspec +41 -0
  11. data/lib/gitabu/api/v3/actions.rb +3724 -0
  12. data/lib/gitabu/api/v3/activity.rb +835 -0
  13. data/lib/gitabu/api/v3/apps.rb +961 -0
  14. data/lib/gitabu/api/v3/billing.rb +217 -0
  15. data/lib/gitabu/api/v3/branches.rb +1098 -0
  16. data/lib/gitabu/api/v3/checks.rb +384 -0
  17. data/lib/gitabu/api/v3/code_scanning.rb +315 -0
  18. data/lib/gitabu/api/v3/codes_of_conduct.rb +92 -0
  19. data/lib/gitabu/api/v3/codespaces.rb +650 -0
  20. data/lib/gitabu/api/v3/collaborators.rb +341 -0
  21. data/lib/gitabu/api/v3/commits.rb +428 -0
  22. data/lib/gitabu/api/v3/dependabot.rb +419 -0
  23. data/lib/gitabu/api/v3/deploy_keys.rb +152 -0
  24. data/lib/gitabu/api/v3/deployments.rb +356 -0
  25. data/lib/gitabu/api/v3/emojis.rb +67 -0
  26. data/lib/gitabu/api/v3/enterprise_admin.rb +495 -0
  27. data/lib/gitabu/api/v3/gists.rb +552 -0
  28. data/lib/gitabu/api/v3/git.rb +409 -0
  29. data/lib/gitabu/api/v3/gitignore.rb +92 -0
  30. data/lib/gitabu/api/v3/interactions.rb +275 -0
  31. data/lib/gitabu/api/v3/issues.rb +1119 -0
  32. data/lib/gitabu/api/v3/licenses.rb +118 -0
  33. data/lib/gitabu/api/v3/markdown.rb +94 -0
  34. data/lib/gitabu/api/v3/meta.rb +142 -0
  35. data/lib/gitabu/api/v3/metrics.rb +302 -0
  36. data/lib/gitabu/api/v3/migrations.rb +631 -0
  37. data/lib/gitabu/api/v3/orgs.rb +1291 -0
  38. data/lib/gitabu/api/v3/packages.rb +686 -0
  39. data/lib/gitabu/api/v3/pages.rb +282 -0
  40. data/lib/gitabu/api/v3/projects.rb +693 -0
  41. data/lib/gitabu/api/v3/pulls.rb +816 -0
  42. data/lib/gitabu/api/v3/rate_limit.rb +67 -0
  43. data/lib/gitabu/api/v3/reactions.rb +734 -0
  44. data/lib/gitabu/api/v3/releases.rb +411 -0
  45. data/lib/gitabu/api/v3/repos.rb +1136 -0
  46. data/lib/gitabu/api/v3/scim.rb +214 -0
  47. data/lib/gitabu/api/v3/search.rb +217 -0
  48. data/lib/gitabu/api/v3/secret_scanning.rb +201 -0
  49. data/lib/gitabu/api/v3/teams.rb +1963 -0
  50. data/lib/gitabu/api/v3/users.rb +851 -0
  51. data/lib/gitabu/api/v3/webhooks.rb +379 -0
  52. data/lib/gitabu/builder.rb +37 -0
  53. data/lib/gitabu/client.rb +8 -0
  54. data/lib/gitabu/generator.rb +75 -0
  55. data/lib/gitabu/http_client.rb +96 -0
  56. data/lib/gitabu/items.rb +110 -0
  57. data/lib/gitabu/public/api/v3/actions.json +5779 -0
  58. data/lib/gitabu/public/api/v3/activity.json +1248 -0
  59. data/lib/gitabu/public/api/v3/apps.json +1174 -0
  60. data/lib/gitabu/public/api/v3/billing.json +183 -0
  61. data/lib/gitabu/public/api/v3/branches.json +1886 -0
  62. data/lib/gitabu/public/api/v3/checks.json +856 -0
  63. data/lib/gitabu/public/api/v3/code_scanning.json +666 -0
  64. data/lib/gitabu/public/api/v3/codes_of_conduct.json +41 -0
  65. data/lib/gitabu/public/api/v3/codespaces.json +884 -0
  66. data/lib/gitabu/public/api/v3/collaborators.json +464 -0
  67. data/lib/gitabu/public/api/v3/commits.json +830 -0
  68. data/lib/gitabu/public/api/v3/dependabot.json +596 -0
  69. data/lib/gitabu/public/api/v3/deploy_keys.json +195 -0
  70. data/lib/gitabu/public/api/v3/deployments.json +698 -0
  71. data/lib/gitabu/public/api/v3/emojis.json +18 -0
  72. data/lib/gitabu/public/api/v3/enterprise_admin.json +881 -0
  73. data/lib/gitabu/public/api/v3/gists.json +689 -0
  74. data/lib/gitabu/public/api/v3/git.json +735 -0
  75. data/lib/gitabu/public/api/v3/gitignore.json +41 -0
  76. data/lib/gitabu/public/api/v3/interactions.json +265 -0
  77. data/lib/gitabu/public/api/v3/issues.json +2359 -0
  78. data/lib/gitabu/public/api/v3/licenses.json +100 -0
  79. data/lib/gitabu/public/api/v3/markdown.json +59 -0
  80. data/lib/gitabu/public/api/v3/meta.json +69 -0
  81. data/lib/gitabu/public/api/v3/metrics.json +342 -0
  82. data/lib/gitabu/public/api/v3/migrations.json +960 -0
  83. data/lib/gitabu/public/api/v3/orgs.json +1989 -0
  84. data/lib/gitabu/public/api/v3/packages.json +1078 -0
  85. data/lib/gitabu/public/api/v3/pages.json +373 -0
  86. data/lib/gitabu/public/api/v3/projects.json +966 -0
  87. data/lib/gitabu/public/api/v3/pulls.json +1768 -0
  88. data/lib/gitabu/public/api/v3/rate_limit.json +18 -0
  89. data/lib/gitabu/public/api/v3/reactions.json +1425 -0
  90. data/lib/gitabu/public/api/v3/releases.json +753 -0
  91. data/lib/gitabu/public/api/v3/repos.json +2314 -0
  92. data/lib/gitabu/public/api/v3/scim.json +412 -0
  93. data/lib/gitabu/public/api/v3/search.json +408 -0
  94. data/lib/gitabu/public/api/v3/secret_scanning.json +385 -0
  95. data/lib/gitabu/public/api/v3/teams.json +3126 -0
  96. data/lib/gitabu/public/api/v3/users.json +956 -0
  97. data/lib/gitabu/public/api/v3/webhooks.json +667 -0
  98. data/lib/gitabu/run.rb +237 -0
  99. data/lib/gitabu/scraper.rb +86 -0
  100. data/lib/gitabu/templates/template.rb.erb +70 -0
  101. data/lib/gitabu/version.rb +6 -0
  102. data/lib/gitabu.rb +57 -0
  103. data/sig/gitabu.rbs +4 -0
  104. metadata +177 -0
@@ -0,0 +1,1174 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "namespace_description": "Get the authenticated app",
5
+ "method": "get",
6
+ "endpoint": "/app",
7
+ "field_0": {
8
+ "field_type": "header",
9
+ "fields": {
10
+ "name": "accept",
11
+ "type": "string",
12
+ "in": "header",
13
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
14
+ }
15
+ }
16
+ },
17
+ {
18
+ "namespace_description": "Create a GitHub App from a manifest",
19
+ "method": "post",
20
+ "endpoint": "/app-manifests/{code}/conversions",
21
+ "field_0": {
22
+ "field_type": "header",
23
+ "fields": {
24
+ "name": "accept",
25
+ "type": "string",
26
+ "in": "header",
27
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
28
+ }
29
+ },
30
+ "field_1": {
31
+ "field_type": "path",
32
+ "fields": {
33
+ "name": "code",
34
+ "type": "string",
35
+ "in": "path",
36
+ "description": ""
37
+ }
38
+ }
39
+ },
40
+ {
41
+ "namespace_description": "List installations for the authenticated app",
42
+ "method": "get",
43
+ "endpoint": "/app/installations",
44
+ "field_0": {
45
+ "field_type": "header",
46
+ "fields": {
47
+ "name": "accept",
48
+ "type": "string",
49
+ "in": "header",
50
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
51
+ }
52
+ },
53
+ "field_1": {
54
+ "field_type": "query",
55
+ "fields": {
56
+ "name": "per_page",
57
+ "type": "integer",
58
+ "in": "query",
59
+ "description": "Results per page (max 100)Default: 30"
60
+ }
61
+ },
62
+ "field_2": {
63
+ "field_type": "query",
64
+ "fields": {
65
+ "name": "page",
66
+ "type": "integer",
67
+ "in": "query",
68
+ "description": "Page number of the results to fetch.Default: 1"
69
+ }
70
+ },
71
+ "field_3": {
72
+ "field_type": "query",
73
+ "fields": {
74
+ "name": "since",
75
+ "type": "string",
76
+ "in": "query",
77
+ "description": "Only show notifications updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ."
78
+ }
79
+ },
80
+ "field_4": {
81
+ "field_type": "query",
82
+ "fields": {
83
+ "name": "outdated",
84
+ "type": "string",
85
+ "in": "query",
86
+ "description": ""
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "namespace_description": "Get an installation for the authenticated app",
92
+ "method": "get",
93
+ "endpoint": "/app/installations/{installation_id}",
94
+ "field_0": {
95
+ "field_type": "header",
96
+ "fields": {
97
+ "name": "accept",
98
+ "type": "string",
99
+ "in": "header",
100
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
101
+ }
102
+ },
103
+ "field_1": {
104
+ "field_type": "path",
105
+ "fields": {
106
+ "name": "installation_id",
107
+ "type": "integer",
108
+ "in": "path",
109
+ "description": "installation_id parameter"
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "namespace_description": "Delete an installation for the authenticated app",
115
+ "method": "delete",
116
+ "endpoint": "/app/installations/{installation_id}",
117
+ "field_0": {
118
+ "field_type": "header",
119
+ "fields": {
120
+ "name": "accept",
121
+ "type": "string",
122
+ "in": "header",
123
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
124
+ }
125
+ },
126
+ "field_1": {
127
+ "field_type": "path",
128
+ "fields": {
129
+ "name": "installation_id",
130
+ "type": "integer",
131
+ "in": "path",
132
+ "description": "installation_id parameter"
133
+ }
134
+ }
135
+ },
136
+ {
137
+ "namespace_description": "Create an installation access token for an app",
138
+ "method": "post",
139
+ "endpoint": "/app/installations/{installation_id}/access_tokens",
140
+ "field_0": {
141
+ "field_type": "header",
142
+ "fields": {
143
+ "name": "accept",
144
+ "type": "string",
145
+ "in": "header",
146
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
147
+ }
148
+ },
149
+ "field_1": {
150
+ "field_type": "path",
151
+ "fields": {
152
+ "name": "installation_id",
153
+ "type": "integer",
154
+ "in": "path",
155
+ "description": "installation_id parameter"
156
+ }
157
+ },
158
+ "field_2": {
159
+ "field_type": "body",
160
+ "fields": {
161
+ "name": "repositories",
162
+ "type": "array of strings",
163
+ "in": "body",
164
+ "description": "List of repository names that the token should have access to"
165
+ }
166
+ },
167
+ "field_3": {
168
+ "field_type": "body",
169
+ "fields": {
170
+ "name": "repository_ids",
171
+ "type": "array of integers",
172
+ "in": "body",
173
+ "description": "List of repository IDs that the token should have access to"
174
+ }
175
+ },
176
+ "field_4": {
177
+ "field_type": "body",
178
+ "fields": {
179
+ "name": "permissions",
180
+ "type": "object",
181
+ "in": "body",
182
+ "description": "The permissions granted to the user-to-server access token."
183
+ }
184
+ },
185
+ "field_5": {
186
+ "field_type": null,
187
+ "fields": {
188
+ "name": "Properties of thepermissionsobjectName (Type)Descriptionactions (string)The level of permission to grant the access token for GitHub Actions workflows, workflow runs, and artifacts. Can be one of: read or write.administration (string)The level of permission to grant the access token for repository creation, deletion, settings, teams, and collaborators creation. Can be one of: read or write.checks (string)The level of permission to grant the access token for checks on code. Can be one of: read or write.contents (string)The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges. Can be one of: read or write.deployments (string)The level of permission to grant the access token for deployments and deployment statuses. Can be one of: read or write.environments (string)The level of permission to grant the access token for managing repository environments. Can be one of: read or write.issues (string)The level of permission to grant the access token for issues and related comments, assignees, labels, and milestones. Can be one of: read or write.metadata (string)The level of permission to grant the access token to search repositories, list collaborators, and access repository metadata. Can be one of: read or write.packages (string)The level of permission to grant the access token for packages published to GitHub Packages. Can be one of: read or write.pages (string)The level of permission to grant the access token to retrieve Pages statuses, configuration, and builds, as well as create new builds. Can be one of: read or write.pull_requests (string)The level of permission to grant the access token for pull requests and related comments, assignees, labels, milestones, and merges. Can be one of: read or write.repository_hooks (string)The level of permission to grant the access token to manage the post-receive hooks for a repository. Can be one of: read or write.repository_projects (string)The level of permission to grant the access token to manage repository projects, columns, and cards. Can be one of: read, write, or admin.secret_scanning_alerts (string)The level of permission to grant the access token to view and manage secret scanning alerts. Can be one of: read or write.secrets (string)The level of permission to grant the access token to manage repository secrets. Can be one of: read or write.security_events (string)The level of permission to grant the access token to view and manage security events like code scanning alerts. Can be one of: read or write.single_file (string)The level of permission to grant the access token to manage just a single file. Can be one of: read or write.statuses (string)The level of permission to grant the access token for commit statuses. Can be one of: read or write.vulnerability_alerts (string)The level of permission to grant the access token to manage Dependabot alerts. Can be one of: read or write.workflows (string)The level of permission to grant the access token to update GitHub Actions workflow files. Can be one of: write.members (string)The level of permission to grant the access token for organization teams and members. Can be one of: read or write.organization_administration (string)The level of permission to grant the access token to manage access to an organization. Can be one of: read or write.organization_hooks (string)The level of permission to grant the access token to manage the post-receive hooks for an organization. Can be one of: read or write.organization_plan (string)The level of permission to grant the access token for viewing an organization's plan. Can be one of: read.organization_projects (string)The level of permission to grant the access token to manage organization projects and projects beta (where available). Can be one of: read, write, or admin.organization_packages (string)The level of permission to grant the access token for organization packages published to GitHub Packages. Can be one of: read or write.organization_secrets (string)The level of permission to grant the access token to manage organization secrets. Can be one of: read or write.organization_self_hosted_runners (string)The level of permission to grant the access token to view and manage GitHub Actions self-hosted runners available to an organization. Can be one of: read or write.organization_user_blocking (string)The level of permission to grant the access token to view and manage users blocked by the organization. Can be one of: read or write.team_discussions (string)The level of permission to grant the access token to manage team discussions and related comments. Can be one of: read or write.",
189
+ "type": null,
190
+ "in": null,
191
+ "description": null
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "namespace_description": "Suspend an app installation",
197
+ "method": "put",
198
+ "endpoint": "/app/installations/{installation_id}/suspended",
199
+ "field_0": {
200
+ "field_type": "header",
201
+ "fields": {
202
+ "name": "accept",
203
+ "type": "string",
204
+ "in": "header",
205
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
206
+ }
207
+ },
208
+ "field_1": {
209
+ "field_type": "path",
210
+ "fields": {
211
+ "name": "installation_id",
212
+ "type": "integer",
213
+ "in": "path",
214
+ "description": "installation_id parameter"
215
+ }
216
+ }
217
+ },
218
+ {
219
+ "namespace_description": "Unsuspend an app installation",
220
+ "method": "delete",
221
+ "endpoint": "/app/installations/{installation_id}/suspended",
222
+ "field_0": {
223
+ "field_type": "header",
224
+ "fields": {
225
+ "name": "accept",
226
+ "type": "string",
227
+ "in": "header",
228
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
229
+ }
230
+ },
231
+ "field_1": {
232
+ "field_type": "path",
233
+ "fields": {
234
+ "name": "installation_id",
235
+ "type": "integer",
236
+ "in": "path",
237
+ "description": "installation_id parameter"
238
+ }
239
+ }
240
+ },
241
+ {
242
+ "namespace_description": "Get an app",
243
+ "method": "get",
244
+ "endpoint": "/apps/{app_slug}",
245
+ "field_0": {
246
+ "field_type": "header",
247
+ "fields": {
248
+ "name": "accept",
249
+ "type": "string",
250
+ "in": "header",
251
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
252
+ }
253
+ },
254
+ "field_1": {
255
+ "field_type": "path",
256
+ "fields": {
257
+ "name": "app_slug",
258
+ "type": "string",
259
+ "in": "path",
260
+ "description": ""
261
+ }
262
+ }
263
+ },
264
+ {
265
+ "namespace_description": "Get an organization installation for the authenticated app",
266
+ "method": "get",
267
+ "endpoint": "/orgs/{org}/installation",
268
+ "field_0": {
269
+ "field_type": "header",
270
+ "fields": {
271
+ "name": "accept",
272
+ "type": "string",
273
+ "in": "header",
274
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
275
+ }
276
+ },
277
+ "field_1": {
278
+ "field_type": "path",
279
+ "fields": {
280
+ "name": "org",
281
+ "type": "string",
282
+ "in": "path",
283
+ "description": ""
284
+ }
285
+ }
286
+ },
287
+ {
288
+ "namespace_description": "Get a repository installation for the authenticated app",
289
+ "method": "get",
290
+ "endpoint": "/repos/{owner}/{repo}/installation",
291
+ "field_0": {
292
+ "field_type": "header",
293
+ "fields": {
294
+ "name": "accept",
295
+ "type": "string",
296
+ "in": "header",
297
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
298
+ }
299
+ },
300
+ "field_1": {
301
+ "field_type": "path",
302
+ "fields": {
303
+ "name": "owner",
304
+ "type": "string",
305
+ "in": "path",
306
+ "description": ""
307
+ }
308
+ },
309
+ "field_2": {
310
+ "field_type": "path",
311
+ "fields": {
312
+ "name": "repo",
313
+ "type": "string",
314
+ "in": "path",
315
+ "description": ""
316
+ }
317
+ }
318
+ },
319
+ {
320
+ "namespace_description": "Get a user installation for the authenticated app",
321
+ "method": "get",
322
+ "endpoint": "/users/{username}/installation",
323
+ "field_0": {
324
+ "field_type": "header",
325
+ "fields": {
326
+ "name": "accept",
327
+ "type": "string",
328
+ "in": "header",
329
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
330
+ }
331
+ },
332
+ "field_1": {
333
+ "field_type": "path",
334
+ "fields": {
335
+ "name": "username",
336
+ "type": "string",
337
+ "in": "path",
338
+ "description": ""
339
+ }
340
+ }
341
+ },
342
+ {
343
+ "namespace_description": "List repositories accessible to the app installation",
344
+ "method": "get",
345
+ "endpoint": "/installation/repositories",
346
+ "field_0": {
347
+ "field_type": "header",
348
+ "fields": {
349
+ "name": "accept",
350
+ "type": "string",
351
+ "in": "header",
352
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
353
+ }
354
+ },
355
+ "field_1": {
356
+ "field_type": "query",
357
+ "fields": {
358
+ "name": "per_page",
359
+ "type": "integer",
360
+ "in": "query",
361
+ "description": "Results per page (max 100)Default: 30"
362
+ }
363
+ },
364
+ "field_2": {
365
+ "field_type": "query",
366
+ "fields": {
367
+ "name": "page",
368
+ "type": "integer",
369
+ "in": "query",
370
+ "description": "Page number of the results to fetch.Default: 1"
371
+ }
372
+ }
373
+ },
374
+ {
375
+ "namespace_description": "Revoke an installation access token",
376
+ "method": "delete",
377
+ "endpoint": "/installation/token",
378
+ "field_0": {
379
+ "field_type": "header",
380
+ "fields": {
381
+ "name": "accept",
382
+ "type": "string",
383
+ "in": "header",
384
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
385
+ }
386
+ }
387
+ },
388
+ {
389
+ "namespace_description": "List app installations accessible to the user access token",
390
+ "method": "get",
391
+ "endpoint": "/user/installations",
392
+ "field_0": {
393
+ "field_type": "header",
394
+ "fields": {
395
+ "name": "accept",
396
+ "type": "string",
397
+ "in": "header",
398
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
399
+ }
400
+ },
401
+ "field_1": {
402
+ "field_type": "query",
403
+ "fields": {
404
+ "name": "per_page",
405
+ "type": "integer",
406
+ "in": "query",
407
+ "description": "Results per page (max 100)Default: 30"
408
+ }
409
+ },
410
+ "field_2": {
411
+ "field_type": "query",
412
+ "fields": {
413
+ "name": "page",
414
+ "type": "integer",
415
+ "in": "query",
416
+ "description": "Page number of the results to fetch.Default: 1"
417
+ }
418
+ }
419
+ },
420
+ {
421
+ "namespace_description": "List repositories accessible to the user access token",
422
+ "method": "get",
423
+ "endpoint": "/user/installations/{installation_id}/repositories",
424
+ "field_0": {
425
+ "field_type": "header",
426
+ "fields": {
427
+ "name": "accept",
428
+ "type": "string",
429
+ "in": "header",
430
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
431
+ }
432
+ },
433
+ "field_1": {
434
+ "field_type": "path",
435
+ "fields": {
436
+ "name": "installation_id",
437
+ "type": "integer",
438
+ "in": "path",
439
+ "description": "installation_id parameter"
440
+ }
441
+ },
442
+ "field_2": {
443
+ "field_type": "query",
444
+ "fields": {
445
+ "name": "per_page",
446
+ "type": "integer",
447
+ "in": "query",
448
+ "description": "Results per page (max 100)Default: 30"
449
+ }
450
+ },
451
+ "field_3": {
452
+ "field_type": "query",
453
+ "fields": {
454
+ "name": "page",
455
+ "type": "integer",
456
+ "in": "query",
457
+ "description": "Page number of the results to fetch.Default: 1"
458
+ }
459
+ }
460
+ },
461
+ {
462
+ "namespace_description": "Add a repository to an app installation",
463
+ "method": "put",
464
+ "endpoint": "/user/installations/{installation_id}/repositories/{repository_id}",
465
+ "field_0": {
466
+ "field_type": "header",
467
+ "fields": {
468
+ "name": "accept",
469
+ "type": "string",
470
+ "in": "header",
471
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
472
+ }
473
+ },
474
+ "field_1": {
475
+ "field_type": "path",
476
+ "fields": {
477
+ "name": "installation_id",
478
+ "type": "integer",
479
+ "in": "path",
480
+ "description": "installation_id parameter"
481
+ }
482
+ },
483
+ "field_2": {
484
+ "field_type": "path",
485
+ "fields": {
486
+ "name": "repository_id",
487
+ "type": "integer",
488
+ "in": "path",
489
+ "description": ""
490
+ }
491
+ }
492
+ },
493
+ {
494
+ "namespace_description": "Remove a repository from an app installation",
495
+ "method": "delete",
496
+ "endpoint": "/user/installations/{installation_id}/repositories/{repository_id}",
497
+ "field_0": {
498
+ "field_type": "header",
499
+ "fields": {
500
+ "name": "accept",
501
+ "type": "string",
502
+ "in": "header",
503
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
504
+ }
505
+ },
506
+ "field_1": {
507
+ "field_type": "path",
508
+ "fields": {
509
+ "name": "installation_id",
510
+ "type": "integer",
511
+ "in": "path",
512
+ "description": "installation_id parameter"
513
+ }
514
+ },
515
+ "field_2": {
516
+ "field_type": "path",
517
+ "fields": {
518
+ "name": "repository_id",
519
+ "type": "integer",
520
+ "in": "path",
521
+ "description": ""
522
+ }
523
+ }
524
+ },
525
+ {
526
+ "namespace_description": "Get a subscription plan for an account",
527
+ "method": "get",
528
+ "endpoint": "/marketplace_listing/accounts/{account_id}",
529
+ "field_0": {
530
+ "field_type": "header",
531
+ "fields": {
532
+ "name": "accept",
533
+ "type": "string",
534
+ "in": "header",
535
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
536
+ }
537
+ },
538
+ "field_1": {
539
+ "field_type": "path",
540
+ "fields": {
541
+ "name": "account_id",
542
+ "type": "integer",
543
+ "in": "path",
544
+ "description": "account_id parameter"
545
+ }
546
+ }
547
+ },
548
+ {
549
+ "namespace_description": "List plans",
550
+ "method": "get",
551
+ "endpoint": "/marketplace_listing/plans",
552
+ "field_0": {
553
+ "field_type": "header",
554
+ "fields": {
555
+ "name": "accept",
556
+ "type": "string",
557
+ "in": "header",
558
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
559
+ }
560
+ },
561
+ "field_1": {
562
+ "field_type": "query",
563
+ "fields": {
564
+ "name": "per_page",
565
+ "type": "integer",
566
+ "in": "query",
567
+ "description": "Results per page (max 100)Default: 30"
568
+ }
569
+ },
570
+ "field_2": {
571
+ "field_type": "query",
572
+ "fields": {
573
+ "name": "page",
574
+ "type": "integer",
575
+ "in": "query",
576
+ "description": "Page number of the results to fetch.Default: 1"
577
+ }
578
+ }
579
+ },
580
+ {
581
+ "namespace_description": "List accounts for a plan",
582
+ "method": "get",
583
+ "endpoint": "/marketplace_listing/plans/{plan_id}/accounts",
584
+ "field_0": {
585
+ "field_type": "header",
586
+ "fields": {
587
+ "name": "accept",
588
+ "type": "string",
589
+ "in": "header",
590
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
591
+ }
592
+ },
593
+ "field_1": {
594
+ "field_type": "path",
595
+ "fields": {
596
+ "name": "plan_id",
597
+ "type": "integer",
598
+ "in": "path",
599
+ "description": "plan_id parameter"
600
+ }
601
+ },
602
+ "field_2": {
603
+ "field_type": "query",
604
+ "fields": {
605
+ "name": "sort",
606
+ "type": "string",
607
+ "in": "query",
608
+ "description": "One of created (when the repository was starred) or updated (when it was last pushed to).Default: created"
609
+ }
610
+ },
611
+ "field_3": {
612
+ "field_type": "query",
613
+ "fields": {
614
+ "name": "direction",
615
+ "type": "string",
616
+ "in": "query",
617
+ "description": "To return the oldest accounts first, set to asc. Can be one of asc or desc. Ignored without the sort parameter."
618
+ }
619
+ },
620
+ "field_4": {
621
+ "field_type": "query",
622
+ "fields": {
623
+ "name": "per_page",
624
+ "type": "integer",
625
+ "in": "query",
626
+ "description": "Results per page (max 100)Default: 30"
627
+ }
628
+ },
629
+ "field_5": {
630
+ "field_type": "query",
631
+ "fields": {
632
+ "name": "page",
633
+ "type": "integer",
634
+ "in": "query",
635
+ "description": "Page number of the results to fetch.Default: 1"
636
+ }
637
+ }
638
+ },
639
+ {
640
+ "namespace_description": "Get a subscription plan for an account (stubbed)",
641
+ "method": "get",
642
+ "endpoint": "/marketplace_listing/stubbed/accounts/{account_id}",
643
+ "field_0": {
644
+ "field_type": "header",
645
+ "fields": {
646
+ "name": "accept",
647
+ "type": "string",
648
+ "in": "header",
649
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
650
+ }
651
+ },
652
+ "field_1": {
653
+ "field_type": "path",
654
+ "fields": {
655
+ "name": "account_id",
656
+ "type": "integer",
657
+ "in": "path",
658
+ "description": "account_id parameter"
659
+ }
660
+ }
661
+ },
662
+ {
663
+ "namespace_description": "List plans (stubbed)",
664
+ "method": "get",
665
+ "endpoint": "/marketplace_listing/stubbed/plans",
666
+ "field_0": {
667
+ "field_type": "header",
668
+ "fields": {
669
+ "name": "accept",
670
+ "type": "string",
671
+ "in": "header",
672
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
673
+ }
674
+ },
675
+ "field_1": {
676
+ "field_type": "query",
677
+ "fields": {
678
+ "name": "per_page",
679
+ "type": "integer",
680
+ "in": "query",
681
+ "description": "Results per page (max 100)Default: 30"
682
+ }
683
+ },
684
+ "field_2": {
685
+ "field_type": "query",
686
+ "fields": {
687
+ "name": "page",
688
+ "type": "integer",
689
+ "in": "query",
690
+ "description": "Page number of the results to fetch.Default: 1"
691
+ }
692
+ }
693
+ },
694
+ {
695
+ "namespace_description": "List accounts for a plan (stubbed)",
696
+ "method": "get",
697
+ "endpoint": "/marketplace_listing/stubbed/plans/{plan_id}/accounts",
698
+ "field_0": {
699
+ "field_type": "header",
700
+ "fields": {
701
+ "name": "accept",
702
+ "type": "string",
703
+ "in": "header",
704
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
705
+ }
706
+ },
707
+ "field_1": {
708
+ "field_type": "path",
709
+ "fields": {
710
+ "name": "plan_id",
711
+ "type": "integer",
712
+ "in": "path",
713
+ "description": "plan_id parameter"
714
+ }
715
+ },
716
+ "field_2": {
717
+ "field_type": "query",
718
+ "fields": {
719
+ "name": "sort",
720
+ "type": "string",
721
+ "in": "query",
722
+ "description": "One of created (when the repository was starred) or updated (when it was last pushed to).Default: created"
723
+ }
724
+ },
725
+ "field_3": {
726
+ "field_type": "query",
727
+ "fields": {
728
+ "name": "direction",
729
+ "type": "string",
730
+ "in": "query",
731
+ "description": "To return the oldest accounts first, set to asc. Can be one of asc or desc. Ignored without the sort parameter."
732
+ }
733
+ },
734
+ "field_4": {
735
+ "field_type": "query",
736
+ "fields": {
737
+ "name": "per_page",
738
+ "type": "integer",
739
+ "in": "query",
740
+ "description": "Results per page (max 100)Default: 30"
741
+ }
742
+ },
743
+ "field_5": {
744
+ "field_type": "query",
745
+ "fields": {
746
+ "name": "page",
747
+ "type": "integer",
748
+ "in": "query",
749
+ "description": "Page number of the results to fetch.Default: 1"
750
+ }
751
+ }
752
+ },
753
+ {
754
+ "namespace_description": "List subscriptions for the authenticated user",
755
+ "method": "get",
756
+ "endpoint": "/user/marketplace_purchases",
757
+ "field_0": {
758
+ "field_type": "header",
759
+ "fields": {
760
+ "name": "accept",
761
+ "type": "string",
762
+ "in": "header",
763
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
764
+ }
765
+ },
766
+ "field_1": {
767
+ "field_type": "query",
768
+ "fields": {
769
+ "name": "per_page",
770
+ "type": "integer",
771
+ "in": "query",
772
+ "description": "Results per page (max 100)Default: 30"
773
+ }
774
+ },
775
+ "field_2": {
776
+ "field_type": "query",
777
+ "fields": {
778
+ "name": "page",
779
+ "type": "integer",
780
+ "in": "query",
781
+ "description": "Page number of the results to fetch.Default: 1"
782
+ }
783
+ }
784
+ },
785
+ {
786
+ "namespace_description": "List subscriptions for the authenticated user (stubbed)",
787
+ "method": "get",
788
+ "endpoint": "/user/marketplace_purchases/stubbed",
789
+ "field_0": {
790
+ "field_type": "header",
791
+ "fields": {
792
+ "name": "accept",
793
+ "type": "string",
794
+ "in": "header",
795
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
796
+ }
797
+ },
798
+ "field_1": {
799
+ "field_type": "query",
800
+ "fields": {
801
+ "name": "per_page",
802
+ "type": "integer",
803
+ "in": "query",
804
+ "description": "Results per page (max 100)Default: 30"
805
+ }
806
+ },
807
+ "field_2": {
808
+ "field_type": "query",
809
+ "fields": {
810
+ "name": "page",
811
+ "type": "integer",
812
+ "in": "query",
813
+ "description": "Page number of the results to fetch.Default: 1"
814
+ }
815
+ }
816
+ },
817
+ {
818
+ "namespace_description": "Delete an app authorization",
819
+ "method": "delete",
820
+ "endpoint": "/applications/{client_id}/grant",
821
+ "field_0": {
822
+ "field_type": "header",
823
+ "fields": {
824
+ "name": "accept",
825
+ "type": "string",
826
+ "in": "header",
827
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
828
+ }
829
+ },
830
+ "field_1": {
831
+ "field_type": "path",
832
+ "fields": {
833
+ "name": "client_id",
834
+ "type": "string",
835
+ "in": "path",
836
+ "description": "The client ID of your GitHub app."
837
+ }
838
+ },
839
+ "field_2": {
840
+ "field_type": "body",
841
+ "fields": {
842
+ "name": "access_token",
843
+ "type": "string",
844
+ "in": "body",
845
+ "description": "Required. The OAuth access token used to authenticate to the GitHub API."
846
+ }
847
+ }
848
+ },
849
+ {
850
+ "namespace_description": "Check a token",
851
+ "method": "post",
852
+ "endpoint": "/applications/{client_id}/token",
853
+ "field_0": {
854
+ "field_type": "header",
855
+ "fields": {
856
+ "name": "accept",
857
+ "type": "string",
858
+ "in": "header",
859
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
860
+ }
861
+ },
862
+ "field_1": {
863
+ "field_type": "path",
864
+ "fields": {
865
+ "name": "client_id",
866
+ "type": "string",
867
+ "in": "path",
868
+ "description": "The client ID of your GitHub app."
869
+ }
870
+ },
871
+ "field_2": {
872
+ "field_type": "body",
873
+ "fields": {
874
+ "name": "access_token",
875
+ "type": "string",
876
+ "in": "body",
877
+ "description": "Required. The access_token of the OAuth application."
878
+ }
879
+ }
880
+ },
881
+ {
882
+ "namespace_description": "Reset a token",
883
+ "method": "patch",
884
+ "endpoint": "/applications/{client_id}/token",
885
+ "field_0": {
886
+ "field_type": "header",
887
+ "fields": {
888
+ "name": "accept",
889
+ "type": "string",
890
+ "in": "header",
891
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
892
+ }
893
+ },
894
+ "field_1": {
895
+ "field_type": "path",
896
+ "fields": {
897
+ "name": "client_id",
898
+ "type": "string",
899
+ "in": "path",
900
+ "description": "The client ID of your GitHub app."
901
+ }
902
+ },
903
+ "field_2": {
904
+ "field_type": "body",
905
+ "fields": {
906
+ "name": "access_token",
907
+ "type": "string",
908
+ "in": "body",
909
+ "description": "Required. The access_token of the OAuth application."
910
+ }
911
+ }
912
+ },
913
+ {
914
+ "namespace_description": "Delete an app token",
915
+ "method": "delete",
916
+ "endpoint": "/applications/{client_id}/token",
917
+ "field_0": {
918
+ "field_type": "header",
919
+ "fields": {
920
+ "name": "accept",
921
+ "type": "string",
922
+ "in": "header",
923
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
924
+ }
925
+ },
926
+ "field_1": {
927
+ "field_type": "path",
928
+ "fields": {
929
+ "name": "client_id",
930
+ "type": "string",
931
+ "in": "path",
932
+ "description": "The client ID of your GitHub app."
933
+ }
934
+ },
935
+ "field_2": {
936
+ "field_type": "body",
937
+ "fields": {
938
+ "name": "access_token",
939
+ "type": "string",
940
+ "in": "body",
941
+ "description": "Required. The OAuth access token used to authenticate to the GitHub API."
942
+ }
943
+ }
944
+ },
945
+ {
946
+ "namespace_description": "Create a scoped access token",
947
+ "method": "post",
948
+ "endpoint": "/applications/{client_id}/token/scoped",
949
+ "field_0": {
950
+ "field_type": "header",
951
+ "fields": {
952
+ "name": "accept",
953
+ "type": "string",
954
+ "in": "header",
955
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
956
+ }
957
+ },
958
+ "field_1": {
959
+ "field_type": "path",
960
+ "fields": {
961
+ "name": "client_id",
962
+ "type": "string",
963
+ "in": "path",
964
+ "description": "The client ID of your GitHub app."
965
+ }
966
+ },
967
+ "field_2": {
968
+ "field_type": "body",
969
+ "fields": {
970
+ "name": "access_token",
971
+ "type": "string",
972
+ "in": "body",
973
+ "description": "Required. The OAuth access token used to authenticate to the GitHub API."
974
+ }
975
+ },
976
+ "field_3": {
977
+ "field_type": "body",
978
+ "fields": {
979
+ "name": "target",
980
+ "type": "string",
981
+ "in": "body",
982
+ "description": "The name of the user or organization to scope the user-to-server access token to. Required unless target_id is specified."
983
+ }
984
+ },
985
+ "field_4": {
986
+ "field_type": "body",
987
+ "fields": {
988
+ "name": "target_id",
989
+ "type": "integer",
990
+ "in": "body",
991
+ "description": "The ID of the user or organization to scope the user-to-server access token to. Required unless target is specified."
992
+ }
993
+ },
994
+ "field_5": {
995
+ "field_type": "body",
996
+ "fields": {
997
+ "name": "repositories",
998
+ "type": "array of strings",
999
+ "in": "body",
1000
+ "description": "The list of repository names to scope the user-to-server access token to. repositories may not be specified if repository_ids is specified."
1001
+ }
1002
+ },
1003
+ "field_6": {
1004
+ "field_type": "body",
1005
+ "fields": {
1006
+ "name": "repository_ids",
1007
+ "type": "array of integers",
1008
+ "in": "body",
1009
+ "description": "The list of repository IDs to scope the user-to-server access token to. repository_ids may not be specified if repositories is specified."
1010
+ }
1011
+ },
1012
+ "field_7": {
1013
+ "field_type": "body",
1014
+ "fields": {
1015
+ "name": "permissions",
1016
+ "type": "object",
1017
+ "in": "body",
1018
+ "description": "The permissions granted to the user-to-server access token."
1019
+ }
1020
+ },
1021
+ "field_8": {
1022
+ "field_type": null,
1023
+ "fields": {
1024
+ "name": "Properties of thepermissionsobjectName (Type)Descriptionactions (string)The level of permission to grant the access token for GitHub Actions workflows, workflow runs, and artifacts. Can be one of: read or write.administration (string)The level of permission to grant the access token for repository creation, deletion, settings, teams, and collaborators creation. Can be one of: read or write.checks (string)The level of permission to grant the access token for checks on code. Can be one of: read or write.contents (string)The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges. Can be one of: read or write.deployments (string)The level of permission to grant the access token for deployments and deployment statuses. Can be one of: read or write.environments (string)The level of permission to grant the access token for managing repository environments. Can be one of: read or write.issues (string)The level of permission to grant the access token for issues and related comments, assignees, labels, and milestones. Can be one of: read or write.metadata (string)The level of permission to grant the access token to search repositories, list collaborators, and access repository metadata. Can be one of: read or write.packages (string)The level of permission to grant the access token for packages published to GitHub Packages. Can be one of: read or write.pages (string)The level of permission to grant the access token to retrieve Pages statuses, configuration, and builds, as well as create new builds. Can be one of: read or write.pull_requests (string)The level of permission to grant the access token for pull requests and related comments, assignees, labels, milestones, and merges. Can be one of: read or write.repository_hooks (string)The level of permission to grant the access token to manage the post-receive hooks for a repository. Can be one of: read or write.repository_projects (string)The level of permission to grant the access token to manage repository projects, columns, and cards. Can be one of: read, write, or admin.secret_scanning_alerts (string)The level of permission to grant the access token to view and manage secret scanning alerts. Can be one of: read or write.secrets (string)The level of permission to grant the access token to manage repository secrets. Can be one of: read or write.security_events (string)The level of permission to grant the access token to view and manage security events like code scanning alerts. Can be one of: read or write.single_file (string)The level of permission to grant the access token to manage just a single file. Can be one of: read or write.statuses (string)The level of permission to grant the access token for commit statuses. Can be one of: read or write.vulnerability_alerts (string)The level of permission to grant the access token to manage Dependabot alerts. Can be one of: read or write.workflows (string)The level of permission to grant the access token to update GitHub Actions workflow files. Can be one of: write.members (string)The level of permission to grant the access token for organization teams and members. Can be one of: read or write.organization_administration (string)The level of permission to grant the access token to manage access to an organization. Can be one of: read or write.organization_hooks (string)The level of permission to grant the access token to manage the post-receive hooks for an organization. Can be one of: read or write.organization_plan (string)The level of permission to grant the access token for viewing an organization's plan. Can be one of: read.organization_projects (string)The level of permission to grant the access token to manage organization projects and projects beta (where available). Can be one of: read, write, or admin.organization_packages (string)The level of permission to grant the access token for organization packages published to GitHub Packages. Can be one of: read or write.organization_secrets (string)The level of permission to grant the access token to manage organization secrets. Can be one of: read or write.organization_self_hosted_runners (string)The level of permission to grant the access token to view and manage GitHub Actions self-hosted runners available to an organization. Can be one of: read or write.organization_user_blocking (string)The level of permission to grant the access token to view and manage users blocked by the organization. Can be one of: read or write.team_discussions (string)The level of permission to grant the access token to manage team discussions and related comments. Can be one of: read or write.",
1025
+ "type": null,
1026
+ "in": null,
1027
+ "description": null
1028
+ }
1029
+ }
1030
+ },
1031
+ {
1032
+ "namespace_description": "Get a webhook configuration for an app",
1033
+ "method": "get",
1034
+ "endpoint": "/app/hook/config",
1035
+ "field_0": {
1036
+ "field_type": "header",
1037
+ "fields": {
1038
+ "name": "accept",
1039
+ "type": "string",
1040
+ "in": "header",
1041
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
1042
+ }
1043
+ }
1044
+ },
1045
+ {
1046
+ "namespace_description": "Update a webhook configuration for an app",
1047
+ "method": "patch",
1048
+ "endpoint": "/app/hook/config",
1049
+ "field_0": {
1050
+ "field_type": "header",
1051
+ "fields": {
1052
+ "name": "accept",
1053
+ "type": "string",
1054
+ "in": "header",
1055
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
1056
+ }
1057
+ },
1058
+ "field_1": {
1059
+ "field_type": "body",
1060
+ "fields": {
1061
+ "name": "url",
1062
+ "type": "string",
1063
+ "in": "body",
1064
+ "description": "The URL to which the payloads will be delivered."
1065
+ }
1066
+ },
1067
+ "field_2": {
1068
+ "field_type": "body",
1069
+ "fields": {
1070
+ "name": "content_type",
1071
+ "type": "string",
1072
+ "in": "body",
1073
+ "description": "The media type used to serialize the payloads. Supported values include json and form. The default is form."
1074
+ }
1075
+ },
1076
+ "field_3": {
1077
+ "field_type": "body",
1078
+ "fields": {
1079
+ "name": "secret",
1080
+ "type": "string",
1081
+ "in": "body",
1082
+ "description": "If provided, the secret will be used as the key to generate the HMAC hex digest value for delivery signature headers."
1083
+ }
1084
+ },
1085
+ "field_4": {
1086
+ "field_type": "body",
1087
+ "fields": {
1088
+ "name": "insecure_ssl",
1089
+ "type": "string or number or ",
1090
+ "in": "body",
1091
+ "description": "Determines whether the SSL certificate of the host for url will be verified when delivering payloads. Supported values include 0 (verification is performed) and 1 (verification is not performed). The default is 0. We strongly recommend not setting this to 1 as you are subject to man-in-the-middle and other attacks."
1092
+ }
1093
+ }
1094
+ },
1095
+ {
1096
+ "namespace_description": "List deliveries for an app webhook",
1097
+ "method": "get",
1098
+ "endpoint": "/app/hook/deliveries",
1099
+ "field_0": {
1100
+ "field_type": "header",
1101
+ "fields": {
1102
+ "name": "accept",
1103
+ "type": "string",
1104
+ "in": "header",
1105
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
1106
+ }
1107
+ },
1108
+ "field_1": {
1109
+ "field_type": "query",
1110
+ "fields": {
1111
+ "name": "per_page",
1112
+ "type": "integer",
1113
+ "in": "query",
1114
+ "description": "Results per page (max 100)Default: 30"
1115
+ }
1116
+ },
1117
+ "field_2": {
1118
+ "field_type": "query",
1119
+ "fields": {
1120
+ "name": "cursor",
1121
+ "type": "string",
1122
+ "in": "query",
1123
+ "description": "Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the link header for the next and previous page cursors."
1124
+ }
1125
+ }
1126
+ },
1127
+ {
1128
+ "namespace_description": "Get a delivery for an app webhook",
1129
+ "method": "get",
1130
+ "endpoint": "/app/hook/deliveries/{delivery_id}",
1131
+ "field_0": {
1132
+ "field_type": "header",
1133
+ "fields": {
1134
+ "name": "accept",
1135
+ "type": "string",
1136
+ "in": "header",
1137
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
1138
+ }
1139
+ },
1140
+ "field_1": {
1141
+ "field_type": "path",
1142
+ "fields": {
1143
+ "name": "delivery_id",
1144
+ "type": "integer",
1145
+ "in": "path",
1146
+ "description": ""
1147
+ }
1148
+ }
1149
+ },
1150
+ {
1151
+ "namespace_description": "Redeliver a delivery for an app webhook",
1152
+ "method": "post",
1153
+ "endpoint": "/app/hook/deliveries/{delivery_id}/attempts",
1154
+ "field_0": {
1155
+ "field_type": "header",
1156
+ "fields": {
1157
+ "name": "accept",
1158
+ "type": "string",
1159
+ "in": "header",
1160
+ "description": "Setting toapplication/vnd.github.v3+json is recommended."
1161
+ }
1162
+ },
1163
+ "field_1": {
1164
+ "field_type": "path",
1165
+ "fields": {
1166
+ "name": "delivery_id",
1167
+ "type": "integer",
1168
+ "in": "path",
1169
+ "description": ""
1170
+ }
1171
+ }
1172
+ }
1173
+ ]
1174
+ }