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.
- {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/METADATA +2 -2
- airbyte_source_github-1.7.2.dist-info/RECORD +62 -0
- source_github/schemas/assignees.json +19 -0
- source_github/schemas/branches.json +17 -0
- source_github/schemas/collaborators.json +26 -0
- source_github/schemas/comments.json +29 -0
- source_github/schemas/commit_comments.json +15 -0
- source_github/schemas/commits.json +35 -0
- source_github/schemas/contributor_activity.json +32 -8
- source_github/schemas/deployments.json +19 -0
- source_github/schemas/events.json +17 -0
- source_github/schemas/issue_events.json +69 -4
- source_github/schemas/issue_labels.json +8 -0
- source_github/schemas/issue_milestones.json +17 -0
- source_github/schemas/issue_reactions.json +7 -0
- source_github/schemas/issue_timeline_events.json +197 -56
- source_github/schemas/issues.json +84 -0
- source_github/schemas/organizations.json +62 -0
- source_github/schemas/project_cards.json +14 -0
- source_github/schemas/project_columns.json +10 -0
- source_github/schemas/projects.json +14 -0
- source_github/schemas/projects_v2.json +23 -0
- source_github/schemas/pull_request_comment_reactions.json +7 -0
- source_github/schemas/pull_request_commits.json +33 -0
- source_github/schemas/pull_request_stats.json +24 -3
- source_github/schemas/pull_requests.json +60 -0
- source_github/schemas/releases.json +38 -0
- source_github/schemas/repositories.json +98 -0
- source_github/schemas/review_comments.json +34 -0
- source_github/schemas/reviews.json +18 -0
- source_github/schemas/stargazers.json +4 -0
- source_github/schemas/tags.json +8 -0
- source_github/schemas/team_members.json +20 -0
- source_github/schemas/team_memberships.json +6 -0
- source_github/schemas/teams.json +14 -0
- source_github/schemas/users.json +19 -0
- source_github/schemas/workflow_jobs.json +30 -0
- source_github/schemas/workflow_runs.json +136 -0
- source_github/schemas/workflows.json +11 -0
- airbyte_source_github-1.7.1.dev202404071124.dist-info/RECORD +0 -62
- {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
- {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -3,37 +3,48 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "Details about a repository",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "The unique ID of the event",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "The unique node ID of the event",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"url": {
|
18
|
+
"description": "The URL of the event",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"actor": {
|
22
|
+
"description": "The user who performed the event",
|
18
23
|
"$ref": "user.json"
|
19
24
|
},
|
20
25
|
"event": {
|
26
|
+
"description": "The type of event that occurred",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"commit_id": {
|
30
|
+
"description": "The ID of the commit related to the event",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"commit_url": {
|
34
|
+
"description": "The URL to the commit related to the event",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"created_at": {
|
38
|
+
"description": "The timestamp when the event was created",
|
30
39
|
"type": "string",
|
31
40
|
"format": "date-time"
|
32
41
|
},
|
33
42
|
"state_reason": {
|
43
|
+
"description": "The reason associated with the change in state of the issue event.",
|
34
44
|
"type": ["null", "string"]
|
35
45
|
},
|
36
46
|
"label": {
|
47
|
+
"description": "Details about a label",
|
37
48
|
"type": ["null", "object"],
|
38
49
|
"properties": {
|
39
50
|
"name": {
|
@@ -45,45 +56,57 @@
|
|
45
56
|
}
|
46
57
|
},
|
47
58
|
"review_requester": {
|
59
|
+
"description": "The user who requested a review",
|
48
60
|
"$ref": "user.json"
|
49
61
|
},
|
50
62
|
"issue": {
|
63
|
+
"description": "Information about the associated issue",
|
51
64
|
"type": ["null", "object"],
|
52
65
|
"properties": {
|
53
66
|
"active_lock_reason": {
|
67
|
+
"description": "The reason the issue is locked",
|
54
68
|
"type": ["null", "string"]
|
55
69
|
},
|
56
70
|
"assignee": {
|
71
|
+
"description": "The user assigned to the issue",
|
57
72
|
"$ref": "user.json"
|
58
73
|
},
|
59
74
|
"assignees": {
|
75
|
+
"description": "List of users assigned to the issue",
|
60
76
|
"type": ["null", "array"],
|
61
77
|
"items": {
|
62
78
|
"$ref": "user.json"
|
63
79
|
}
|
64
80
|
},
|
65
81
|
"author_association": {
|
82
|
+
"description": "The association of the event creator to the issue",
|
66
83
|
"type": ["null", "string"]
|
67
84
|
},
|
68
85
|
"closed_at": {
|
86
|
+
"description": "The timestamp when the issue was closed",
|
69
87
|
"type": ["null", "string"],
|
70
88
|
"format": "date-time"
|
71
89
|
},
|
72
90
|
"updated_at": {
|
91
|
+
"description": "The timestamp when the issue was last updated",
|
73
92
|
"type": ["null", "string"],
|
74
93
|
"format": "date-time"
|
75
94
|
},
|
76
95
|
"comments": {
|
96
|
+
"description": "Number of comments on the issue",
|
77
97
|
"type": ["null", "integer"]
|
78
98
|
},
|
79
99
|
"draft": {
|
100
|
+
"description": "Indicates if the issue is a draft",
|
80
101
|
"type": ["null", "boolean"]
|
81
102
|
},
|
82
103
|
"created_at": {
|
104
|
+
"description": "The timestamp when the issue was created",
|
83
105
|
"type": ["null", "string"],
|
84
106
|
"format": "date-time"
|
85
107
|
},
|
86
108
|
"labels": {
|
109
|
+
"description": "List of labels attached to the issue",
|
87
110
|
"type": ["null", "array"],
|
88
111
|
"items": {
|
89
112
|
"type": ["null", "object"],
|
@@ -113,6 +136,7 @@
|
|
113
136
|
}
|
114
137
|
},
|
115
138
|
"locked": {
|
139
|
+
"description": "Indicates if the issue is locked",
|
116
140
|
"type": ["null", "boolean"]
|
117
141
|
},
|
118
142
|
"milestone": {
|
@@ -125,58 +149,81 @@
|
|
125
149
|
"type": ["null", "string"]
|
126
150
|
},
|
127
151
|
"pull_request": {
|
152
|
+
"description": "Details of the pull request linked to the issue",
|
128
153
|
"type": ["null", "object"],
|
129
154
|
"properties": {
|
130
155
|
"merged_at": {
|
156
|
+
"description": "The timestamp when the pull request was merged",
|
131
157
|
"type": ["string", "null"],
|
132
158
|
"format": "date-time"
|
133
159
|
},
|
134
|
-
"diff_url": {
|
135
|
-
|
136
|
-
|
137
|
-
"
|
160
|
+
"diff_url": {
|
161
|
+
"type": ["string", "null"]
|
162
|
+
},
|
163
|
+
"html_url": {
|
164
|
+
"type": ["string", "null"]
|
165
|
+
},
|
166
|
+
"patch_url": {
|
167
|
+
"type": ["string", "null"]
|
168
|
+
},
|
169
|
+
"url": {
|
170
|
+
"type": ["string", "null"]
|
171
|
+
}
|
138
172
|
}
|
139
173
|
},
|
140
174
|
"timeline_url": {
|
175
|
+
"description": "The URL to view the issue timeline",
|
141
176
|
"type": ["null", "string"]
|
142
177
|
},
|
143
178
|
"reactions": {
|
144
179
|
"$ref": "reactions.json"
|
145
180
|
},
|
146
181
|
"id": {
|
182
|
+
"description": "The unique ID of the issue",
|
147
183
|
"type": ["null", "integer"]
|
148
184
|
},
|
149
185
|
"node_id": {
|
186
|
+
"description": "The unique node ID of the issue",
|
150
187
|
"type": ["null", "string"]
|
151
188
|
},
|
152
189
|
"url": {
|
190
|
+
"description": "The URL of the issue",
|
153
191
|
"type": ["null", "string"]
|
154
192
|
},
|
155
193
|
"repository_url": {
|
194
|
+
"description": "The URL of the repository the issue is in",
|
156
195
|
"type": ["null", "string"]
|
157
196
|
},
|
158
197
|
"labels_url": {
|
198
|
+
"description": "The URL to view labels on the issue",
|
159
199
|
"type": ["null", "string"]
|
160
200
|
},
|
161
201
|
"comments_url": {
|
202
|
+
"description": "The URL to view comments on the issue",
|
162
203
|
"type": ["null", "string"]
|
163
204
|
},
|
164
205
|
"events_url": {
|
206
|
+
"description": "The URL to view events related to the issue",
|
165
207
|
"type": ["null", "string"]
|
166
208
|
},
|
167
209
|
"html_url": {
|
210
|
+
"description": "The URL to view the issue on GitHub",
|
168
211
|
"type": ["null", "string"]
|
169
212
|
},
|
170
213
|
"number": {
|
214
|
+
"description": "The issue number",
|
171
215
|
"type": ["null", "integer"]
|
172
216
|
},
|
173
217
|
"state": {
|
218
|
+
"description": "The state of the issue (open, closed, etc.)",
|
174
219
|
"type": ["null", "string"]
|
175
220
|
},
|
176
221
|
"title": {
|
222
|
+
"description": "The title of the issue",
|
177
223
|
"type": ["null", "string"]
|
178
224
|
},
|
179
225
|
"body": {
|
226
|
+
"description": "The body content of the issue",
|
180
227
|
"type": ["null", "string"]
|
181
228
|
},
|
182
229
|
"user": {
|
@@ -185,6 +232,7 @@
|
|
185
232
|
}
|
186
233
|
},
|
187
234
|
"performed_via_github_app": {
|
235
|
+
"description": "Information about the GitHub App that triggered the event",
|
188
236
|
"type": ["null", "object"],
|
189
237
|
"properties": {
|
190
238
|
"id": {
|
@@ -209,17 +257,21 @@
|
|
209
257
|
"type": ["null", "string"]
|
210
258
|
},
|
211
259
|
"html_url": {
|
260
|
+
"description": "The URL to view the app on GitHub",
|
212
261
|
"type": ["null", "string"]
|
213
262
|
},
|
214
263
|
"created_at": {
|
264
|
+
"description": "The timestamp when the app was created",
|
215
265
|
"type": "string",
|
216
266
|
"format": "date-time"
|
217
267
|
},
|
218
268
|
"updated_at": {
|
269
|
+
"description": "The timestamp when the app was last updated",
|
219
270
|
"type": "string",
|
220
271
|
"format": "date-time"
|
221
272
|
},
|
222
273
|
"permissions": {
|
274
|
+
"description": "Permissions of the app",
|
223
275
|
"type": ["null", "object"],
|
224
276
|
"properties": {
|
225
277
|
"actions": {
|
@@ -276,6 +328,7 @@
|
|
276
328
|
}
|
277
329
|
},
|
278
330
|
"events": {
|
331
|
+
"description": "List of events related to the app",
|
279
332
|
"type": "array",
|
280
333
|
"items": {
|
281
334
|
"type": ["null", "string"]
|
@@ -284,6 +337,7 @@
|
|
284
337
|
}
|
285
338
|
},
|
286
339
|
"milestone": {
|
340
|
+
"description": "Details about a milestone",
|
287
341
|
"type": ["null", "object"],
|
288
342
|
"properties": {
|
289
343
|
"title": {
|
@@ -292,12 +346,15 @@
|
|
292
346
|
}
|
293
347
|
},
|
294
348
|
"assignee": {
|
349
|
+
"description": "The user assigned to the issue",
|
295
350
|
"$ref": "user.json"
|
296
351
|
},
|
297
352
|
"assigner": {
|
353
|
+
"description": "The user who assigned the assignee to the issue",
|
298
354
|
"$ref": "user.json"
|
299
355
|
},
|
300
356
|
"project_card": {
|
357
|
+
"description": "Details about a project card",
|
301
358
|
"type": ["null", "object"],
|
302
359
|
"properties": {
|
303
360
|
"id": {
|
@@ -321,20 +378,25 @@
|
|
321
378
|
}
|
322
379
|
},
|
323
380
|
"dismissed_review": {
|
381
|
+
"description": "Details about a dismissed review",
|
324
382
|
"type": ["null", "object"],
|
325
383
|
"properties": {
|
326
384
|
"state": {
|
385
|
+
"description": "The state of the review dismissal",
|
327
386
|
"type": ["null", "string"]
|
328
387
|
},
|
329
388
|
"review_id": {
|
389
|
+
"description": "The ID of the review that was dismissed",
|
330
390
|
"type": ["null", "integer"]
|
331
391
|
},
|
332
392
|
"dismissal_message": {
|
393
|
+
"description": "The message explaining the dismissal of the review",
|
333
394
|
"type": ["null", "string"]
|
334
395
|
}
|
335
396
|
}
|
336
397
|
},
|
337
398
|
"requested_team": {
|
399
|
+
"description": "Details about a team requested for review",
|
338
400
|
"type": ["null", "object"],
|
339
401
|
"properties": {
|
340
402
|
"name": {
|
@@ -371,6 +433,7 @@
|
|
371
433
|
"type": ["null", "string"]
|
372
434
|
},
|
373
435
|
"parent": {
|
436
|
+
"description": "Details about the parent team",
|
374
437
|
"type": ["null", "object"],
|
375
438
|
"properties": {
|
376
439
|
"name": {
|
@@ -411,6 +474,7 @@
|
|
411
474
|
}
|
412
475
|
},
|
413
476
|
"rename": {
|
477
|
+
"description": "Details about a rename action",
|
414
478
|
"type": ["null", "object"],
|
415
479
|
"properties": {
|
416
480
|
"from": {
|
@@ -422,6 +486,7 @@
|
|
422
486
|
}
|
423
487
|
},
|
424
488
|
"requested_reviewer": {
|
489
|
+
"description": "The user requested to review",
|
425
490
|
"$ref": "user.json"
|
426
491
|
}
|
427
492
|
}
|
@@ -3,27 +3,35 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "Information about the repository to which the label belongs.",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "Unique identifier for the label.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "A unique identifier for the label at the GitHub API level.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"url": {
|
18
|
+
"description": "URL that provides direct access to the label resource.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"name": {
|
22
|
+
"description": "The name of the label used for identification.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"description": {
|
26
|
+
"description": "Descriptive text providing additional information about the label.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"color": {
|
30
|
+
"description": "The color associated with the label, typically used for visual representation.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"default": {
|
34
|
+
"description": "Indicates if the label is the default label for the repository.",
|
27
35
|
"type": ["null", "boolean"]
|
28
36
|
}
|
29
37
|
}
|
@@ -3,57 +3,74 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "Repository to which the milestone belongs",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"url": {
|
10
|
+
"description": "API endpoint URL for the milestone",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"html_url": {
|
14
|
+
"description": "URL to view the milestone in a web browser",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"labels_url": {
|
18
|
+
"description": "URL to fetch labels associated with the milestone",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"id": {
|
22
|
+
"description": "Unique identifier for the milestone",
|
18
23
|
"type": ["null", "integer"]
|
19
24
|
},
|
20
25
|
"node_id": {
|
26
|
+
"description": "Unique identifier for the milestone node",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"number": {
|
30
|
+
"description": "Numeric identifier for the milestone",
|
24
31
|
"type": ["null", "integer"]
|
25
32
|
},
|
26
33
|
"state": {
|
34
|
+
"description": "Current state of the milestone (open/closed)",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"title": {
|
38
|
+
"description": "Title or name of the milestone",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"description": {
|
42
|
+
"description": "Brief description of the milestone",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"creator": {
|
46
|
+
"description": "User who created the milestone",
|
36
47
|
"$ref": "user.json"
|
37
48
|
},
|
38
49
|
"open_issues": {
|
50
|
+
"description": "Total number of open issues within the milestone",
|
39
51
|
"type": ["null", "integer"]
|
40
52
|
},
|
41
53
|
"closed_issues": {
|
54
|
+
"description": "Total number of issues closed within the milestone",
|
42
55
|
"type": ["null", "integer"]
|
43
56
|
},
|
44
57
|
"created_at": {
|
58
|
+
"description": "Timestamp indicating when the milestone was created",
|
45
59
|
"type": "string",
|
46
60
|
"format": "date-time"
|
47
61
|
},
|
48
62
|
"updated_at": {
|
63
|
+
"description": "Timestamp indicating when the milestone was last updated",
|
49
64
|
"type": "string",
|
50
65
|
"format": "date-time"
|
51
66
|
},
|
52
67
|
"closed_at": {
|
68
|
+
"description": "Timestamp indicating when the milestone was closed",
|
53
69
|
"type": ["null", "string"],
|
54
70
|
"format": "date-time"
|
55
71
|
},
|
56
72
|
"due_on": {
|
73
|
+
"description": "Timestamp indicating when the milestone is due",
|
57
74
|
"type": ["null", "string"],
|
58
75
|
"format": "date-time"
|
59
76
|
}
|
@@ -3,25 +3,32 @@
|
|
3
3
|
"type": ["null", "object"],
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "The unique identifier of the reaction",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"node_id": {
|
10
|
+
"description": "The unique identifier of the reaction node",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"content": {
|
14
|
+
"description": "The type of reaction (e.g., thumbs up, thumbs down, heart)",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"created_at": {
|
18
|
+
"description": "The date and time when the reaction was created",
|
15
19
|
"type": "string",
|
16
20
|
"format": "date-time"
|
17
21
|
},
|
18
22
|
"user": {
|
23
|
+
"description": "The user who created the reaction",
|
19
24
|
"$ref": "user_graphql.json"
|
20
25
|
},
|
21
26
|
"repository": {
|
27
|
+
"description": "The repository to which the reaction belongs",
|
22
28
|
"type": "string"
|
23
29
|
},
|
24
30
|
"issue_number": {
|
31
|
+
"description": "The issue number to which the reaction belongs",
|
25
32
|
"type": "integer"
|
26
33
|
}
|
27
34
|
}
|