airbyte-source-github 1.7.1.dev202404071124__py3-none-any.whl → 1.7.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/METADATA +2 -2
  2. airbyte_source_github-1.7.2.dist-info/RECORD +62 -0
  3. source_github/schemas/assignees.json +19 -0
  4. source_github/schemas/branches.json +17 -0
  5. source_github/schemas/collaborators.json +26 -0
  6. source_github/schemas/comments.json +29 -0
  7. source_github/schemas/commit_comments.json +15 -0
  8. source_github/schemas/commits.json +35 -0
  9. source_github/schemas/contributor_activity.json +32 -8
  10. source_github/schemas/deployments.json +19 -0
  11. source_github/schemas/events.json +17 -0
  12. source_github/schemas/issue_events.json +69 -4
  13. source_github/schemas/issue_labels.json +8 -0
  14. source_github/schemas/issue_milestones.json +17 -0
  15. source_github/schemas/issue_reactions.json +7 -0
  16. source_github/schemas/issue_timeline_events.json +197 -56
  17. source_github/schemas/issues.json +84 -0
  18. source_github/schemas/organizations.json +62 -0
  19. source_github/schemas/project_cards.json +14 -0
  20. source_github/schemas/project_columns.json +10 -0
  21. source_github/schemas/projects.json +14 -0
  22. source_github/schemas/projects_v2.json +23 -0
  23. source_github/schemas/pull_request_comment_reactions.json +7 -0
  24. source_github/schemas/pull_request_commits.json +33 -0
  25. source_github/schemas/pull_request_stats.json +24 -3
  26. source_github/schemas/pull_requests.json +60 -0
  27. source_github/schemas/releases.json +38 -0
  28. source_github/schemas/repositories.json +98 -0
  29. source_github/schemas/review_comments.json +34 -0
  30. source_github/schemas/reviews.json +18 -0
  31. source_github/schemas/stargazers.json +4 -0
  32. source_github/schemas/tags.json +8 -0
  33. source_github/schemas/team_members.json +20 -0
  34. source_github/schemas/team_memberships.json +6 -0
  35. source_github/schemas/teams.json +14 -0
  36. source_github/schemas/users.json +19 -0
  37. source_github/schemas/workflow_jobs.json +30 -0
  38. source_github/schemas/workflow_runs.json +136 -0
  39. source_github/schemas/workflows.json +11 -0
  40. airbyte_source_github-1.7.1.dev202404071124.dist-info/RECORD +0 -62
  41. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
  42. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -3,63 +3,83 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "Repository information",
6
7
  "type": "string"
7
8
  },
8
9
  "url": {
10
+ "description": "URL for fetching detailed information about this pull request",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "id": {
14
+ "description": "Unique identifier for the pull request",
12
15
  "type": ["null", "integer"]
13
16
  },
14
17
  "node_id": {
18
+ "description": "Node identifier for the pull request",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "html_url": {
22
+ "description": "URL for viewing the pull request on GitHub",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "diff_url": {
26
+ "description": "URL to view the diff for this pull request",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "patch_url": {
30
+ "description": "URL for fetching the patch file for this pull request",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "issue_url": {
34
+ "description": "URL for viewing the issue associated with this pull request",
27
35
  "type": ["null", "string"]
28
36
  },
29
37
  "commits_url": {
38
+ "description": "URL for fetching commits on this pull request",
30
39
  "type": ["null", "string"]
31
40
  },
32
41
  "review_comments_url": {
42
+ "description": "URL for fetching review comments on this pull request",
33
43
  "type": ["null", "string"]
34
44
  },
35
45
  "review_comment_url": {
46
+ "description": "URL for fetching review comments on this pull request",
36
47
  "type": ["null", "string"]
37
48
  },
38
49
  "comments_url": {
50
+ "description": "URL for fetching comments on this pull request",
39
51
  "type": ["null", "string"]
40
52
  },
41
53
  "statuses_url": {
54
+ "description": "URL for fetching status information for this pull request",
42
55
  "type": ["null", "string"]
43
56
  },
44
57
  "number": {
58
+ "description": "Number assigned to the pull request",
45
59
  "type": ["null", "integer"]
46
60
  },
47
61
  "state": {
62
+ "description": "State of the pull request",
48
63
  "type": ["null", "string"]
49
64
  },
50
65
  "locked": {
66
+ "description": "Indicates if the pull request is locked",
51
67
  "type": ["null", "boolean"]
52
68
  },
53
69
  "title": {
70
+ "description": "Title of the pull request",
54
71
  "type": ["null", "string"]
55
72
  },
56
73
  "user": {
74
+ "description": "User who created the pull request",
57
75
  "$ref": "user.json"
58
76
  },
59
77
  "body": {
78
+ "description": "Body content of the pull request",
60
79
  "type": ["null", "string"]
61
80
  },
62
81
  "labels": {
82
+ "description": "Labels attached to this pull request",
63
83
  "type": ["null", "array"],
64
84
  "items": {
65
85
  "type": ["null", "object"],
@@ -89,100 +109,126 @@
89
109
  }
90
110
  },
91
111
  "milestone": {
112
+ "description": "Milestone information for this pull request",
92
113
  "type": ["null", "object"],
93
114
  "properties": {
94
115
  "url": {
116
+ "description": "URL for fetching milestone information",
95
117
  "type": ["null", "string"]
96
118
  },
97
119
  "html_url": {
120
+ "description": "URL for viewing the milestone on GitHub",
98
121
  "type": ["null", "string"]
99
122
  },
100
123
  "labels_url": {
124
+ "description": "URL for fetching labels on the milestone",
101
125
  "type": ["null", "string"]
102
126
  },
103
127
  "id": {
128
+ "description": "Unique identifier for the milestone",
104
129
  "type": ["null", "integer"]
105
130
  },
106
131
  "node_id": {
107
132
  "type": ["null", "string"]
108
133
  },
109
134
  "number": {
135
+ "description": "Milestone number",
110
136
  "type": ["null", "integer"]
111
137
  },
112
138
  "state": {
139
+ "description": "State of the milestone",
113
140
  "type": ["null", "string"]
114
141
  },
115
142
  "title": {
143
+ "description": "Title of the milestone",
116
144
  "type": ["null", "string"]
117
145
  },
118
146
  "description": {
147
+ "description": "Description of the milestone",
119
148
  "type": ["null", "string"]
120
149
  },
121
150
  "creator": {
151
+ "description": "User who created the milestone",
122
152
  "$ref": "user.json"
123
153
  },
124
154
  "open_issues": {
155
+ "description": "Number of open issues in the milestone",
125
156
  "type": ["null", "integer"]
126
157
  },
127
158
  "closed_issues": {
159
+ "description": "Number of closed issues in the milestone",
128
160
  "type": ["null", "integer"]
129
161
  },
130
162
  "created_at": {
163
+ "description": "Date and time when the milestone was created",
131
164
  "type": "string",
132
165
  "format": "date-time"
133
166
  },
134
167
  "updated_at": {
168
+ "description": "Date and time when the milestone was last updated",
135
169
  "type": "string",
136
170
  "format": "date-time"
137
171
  },
138
172
  "closed_at": {
173
+ "description": "Date and time when the milestone was closed",
139
174
  "type": ["null", "string"],
140
175
  "format": "date-time"
141
176
  },
142
177
  "due_on": {
178
+ "description": "Date when the milestone is due",
143
179
  "type": ["null", "string"],
144
180
  "format": "date-time"
145
181
  }
146
182
  }
147
183
  },
148
184
  "active_lock_reason": {
185
+ "description": "Reason this pull request is locked",
149
186
  "type": ["null", "string"]
150
187
  },
151
188
  "created_at": {
189
+ "description": "Date and time when the pull request was created",
152
190
  "type": "string",
153
191
  "format": "date-time"
154
192
  },
155
193
  "updated_at": {
194
+ "description": "Date and time when the pull request was last updated",
156
195
  "type": "string",
157
196
  "format": "date-time"
158
197
  },
159
198
  "closed_at": {
199
+ "description": "Date and time when the pull request was closed",
160
200
  "type": ["null", "string"],
161
201
  "format": "date-time"
162
202
  },
163
203
  "merged_at": {
204
+ "description": "Date and time when the pull request was merged",
164
205
  "type": ["null", "string"],
165
206
  "format": "date-time"
166
207
  },
167
208
  "merge_commit_sha": {
209
+ "description": "SHA hash of the merged commit",
168
210
  "type": ["null", "string"]
169
211
  },
170
212
  "assignee": {
213
+ "description": "User assigned to this pull request",
171
214
  "$ref": "user.json"
172
215
  },
173
216
  "assignees": {
217
+ "description": "Users assigned to this pull request",
174
218
  "type": ["null", "array"],
175
219
  "items": {
176
220
  "$ref": "user.json"
177
221
  }
178
222
  },
179
223
  "requested_reviewers": {
224
+ "description": "Requested reviewers for this pull request",
180
225
  "type": ["null", "array"],
181
226
  "items": {
182
227
  "$ref": "user.json"
183
228
  }
184
229
  },
185
230
  "requested_teams": {
231
+ "description": "Requested teams for this pull request",
186
232
  "type": ["null", "array"],
187
233
  "items": {
188
234
  "type": ["null", "object"],
@@ -228,6 +274,7 @@
228
274
  }
229
275
  },
230
276
  "head": {
277
+ "description": "Head branch information",
231
278
  "type": ["null", "object"],
232
279
  "properties": {
233
280
  "label": {
@@ -251,6 +298,7 @@
251
298
  }
252
299
  },
253
300
  "base": {
301
+ "description": "Base branch information",
254
302
  "type": ["null", "object"],
255
303
  "properties": {
256
304
  "label": {
@@ -277,9 +325,11 @@
277
325
  }
278
326
  },
279
327
  "_links": {
328
+ "description": "Object containing links related to the pull request.",
280
329
  "type": ["null", "object"],
281
330
  "properties": {
282
331
  "self": {
332
+ "description": "URL for fetching detailed information about this pull request",
283
333
  "type": ["null", "object"],
284
334
  "properties": {
285
335
  "href": {
@@ -288,6 +338,7 @@
288
338
  }
289
339
  },
290
340
  "html": {
341
+ "description": "URL for viewing the pull request on GitHub",
291
342
  "type": ["null", "object"],
292
343
  "properties": {
293
344
  "href": {
@@ -296,6 +347,7 @@
296
347
  }
297
348
  },
298
349
  "issue": {
350
+ "description": "URL for viewing the issue associated with this pull request",
299
351
  "type": ["null", "object"],
300
352
  "properties": {
301
353
  "href": {
@@ -304,6 +356,7 @@
304
356
  }
305
357
  },
306
358
  "comments": {
359
+ "description": "URL for fetching comments related to this pull request",
307
360
  "type": ["null", "object"],
308
361
  "properties": {
309
362
  "href": {
@@ -312,6 +365,7 @@
312
365
  }
313
366
  },
314
367
  "review_comments": {
368
+ "description": "URL for fetching review comments related to this pull request",
315
369
  "type": ["null", "object"],
316
370
  "properties": {
317
371
  "href": {
@@ -320,6 +374,7 @@
320
374
  }
321
375
  },
322
376
  "review_comment": {
377
+ "description": "URL for fetching review comments related to this pull request",
323
378
  "type": ["null", "object"],
324
379
  "properties": {
325
380
  "href": {
@@ -328,6 +383,7 @@
328
383
  }
329
384
  },
330
385
  "commits": {
386
+ "description": "URL for fetching commits related to this pull request",
331
387
  "type": ["null", "object"],
332
388
  "properties": {
333
389
  "href": {
@@ -336,6 +392,7 @@
336
392
  }
337
393
  },
338
394
  "statuses": {
395
+ "description": "URL for fetching status information for this pull request",
339
396
  "type": ["null", "object"],
340
397
  "properties": {
341
398
  "href": {
@@ -346,9 +403,11 @@
346
403
  }
347
404
  },
348
405
  "author_association": {
406
+ "description": "Association of the author with this pull request",
349
407
  "type": ["null", "string"]
350
408
  },
351
409
  "auto_merge": {
410
+ "description": "Details about automatic merging of this pull request",
352
411
  "type": ["null", "object"],
353
412
  "properties": {
354
413
  "enabled_by": {
@@ -366,6 +425,7 @@
366
425
  }
367
426
  },
368
427
  "draft": {
428
+ "description": "Indicates if the pull request is a draft",
369
429
  "type": ["null", "boolean"]
370
430
  }
371
431
  }
@@ -3,123 +3,161 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "The repository associated with the release.",
6
7
  "type": "string"
7
8
  },
8
9
  "url": {
10
+ "description": "The URL for the release.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "html_url": {
14
+ "description": "The HTML URL for the release.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "assets_url": {
18
+ "description": "The URL to fetch information about the assets linked to this release.",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "upload_url": {
22
+ "description": "The URL for uploading assets to the release.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "tarball_url": {
26
+ "description": "The URL for the tarball file of the release.",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "zipball_url": {
30
+ "description": "The URL for the zipball file of the release.",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "id": {
34
+ "description": "The unique identifier for the release",
27
35
  "type": ["null", "integer"]
28
36
  },
29
37
  "node_id": {
38
+ "description": "The node ID of the release.",
30
39
  "type": ["null", "string"]
31
40
  },
32
41
  "tag_name": {
42
+ "description": "The tag name of the release.",
33
43
  "type": ["null", "string"]
34
44
  },
35
45
  "target_commitish": {
46
+ "description": "The commit SHA or branch name for the release.",
36
47
  "type": ["null", "string"]
37
48
  },
38
49
  "name": {
50
+ "description": "The name of the release.",
39
51
  "type": ["null", "string"]
40
52
  },
41
53
  "body": {
54
+ "description": "The body of the release.",
42
55
  "type": ["null", "string"]
43
56
  },
44
57
  "draft": {
58
+ "description": "Indicates if the release is a draft.",
45
59
  "type": ["null", "boolean"]
46
60
  },
47
61
  "prerelease": {
62
+ "description": "Indicates if the release is a prerelease.",
48
63
  "type": ["null", "boolean"]
49
64
  },
50
65
  "created_at": {
66
+ "description": "The timestamp of when the release was created.",
51
67
  "type": "string",
52
68
  "format": "date-time"
53
69
  },
54
70
  "published_at": {
71
+ "description": "The timestamp of when the release was published.",
55
72
  "type": ["null", "string"],
56
73
  "format": "date-time"
57
74
  },
58
75
  "author": {
76
+ "description": "The author of the release.",
59
77
  "$ref": "user.json"
60
78
  },
61
79
  "assets": {
80
+ "description": "List of assets (e.g., downloadable files) associated with the release",
62
81
  "type": ["null", "array"],
63
82
  "items": {
83
+ "description": "Details of an individual asset",
64
84
  "type": ["null", "object"],
65
85
  "properties": {
66
86
  "url": {
87
+ "description": "The URL of the asset.",
67
88
  "type": ["null", "string"]
68
89
  },
69
90
  "browser_download_url": {
91
+ "description": "The URL for downloading the asset linked to this release.",
70
92
  "type": ["null", "string"]
71
93
  },
72
94
  "id": {
95
+ "description": "The unique identifier for the asset.",
73
96
  "type": ["null", "integer"]
74
97
  },
75
98
  "node_id": {
99
+ "description": "The node ID of the asset.",
76
100
  "type": ["null", "string"]
77
101
  },
78
102
  "name": {
103
+ "description": "The name of the asset.",
79
104
  "type": ["null", "string"]
80
105
  },
81
106
  "label": {
107
+ "description": "The label assigned to the asset.",
82
108
  "type": ["null", "string"]
83
109
  },
84
110
  "state": {
111
+ "description": "The state of the asset.",
85
112
  "type": ["null", "string"]
86
113
  },
87
114
  "content_type": {
115
+ "description": "The content type of the asset.",
88
116
  "type": ["null", "string"]
89
117
  },
90
118
  "size": {
119
+ "description": "The size of the asset in bytes.",
91
120
  "type": ["null", "integer"]
92
121
  },
93
122
  "download_count": {
123
+ "description": "The number of times the asset has been downloaded.",
94
124
  "type": ["null", "integer"]
95
125
  },
96
126
  "created_at": {
127
+ "description": "The timestamp of when the asset was created.",
97
128
  "type": "string",
98
129
  "format": "date-time"
99
130
  },
100
131
  "updated_at": {
132
+ "description": "The timestamp of when the asset was last updated.",
101
133
  "type": "string",
102
134
  "format": "date-time"
103
135
  },
104
136
  "uploader_id": {
137
+ "description": "The ID of the user who uploaded the asset.",
105
138
  "type": ["null", "integer"]
106
139
  }
107
140
  }
108
141
  }
109
142
  },
110
143
  "body_html": {
144
+ "description": "The HTML body of the release.",
111
145
  "type": ["null", "string"]
112
146
  },
113
147
  "body_text": {
148
+ "description": "The text body of the release.",
114
149
  "type": ["null", "string"]
115
150
  },
116
151
  "mentions_count": {
152
+ "description": "The count of mentions in the release.",
117
153
  "type": ["null", "integer"]
118
154
  },
119
155
  "discussion_url": {
156
+ "description": "The URL for the discussion related to the release.",
120
157
  "type": ["null", "string"]
121
158
  },
122
159
  "reactions": {
160
+ "description": "The reactions associated with the release.",
123
161
  "$ref": "reactions.json"
124
162
  }
125
163
  }