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,47 +3,61 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "url": {
6
+ "description": "The URL to access the project card.",
6
7
  "type": ["null", "string"]
7
8
  },
8
9
  "project_url": {
10
+ "description": "The URL to access the project that includes the project card.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "id": {
14
+ "description": "The unique identifier of the project card.",
12
15
  "type": ["null", "integer"]
13
16
  },
14
17
  "node_id": {
18
+ "description": "The unique Node ID of the project card.",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "note": {
22
+ "description": "Any notes associated with the project card.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "archived": {
26
+ "description": "Indicates whether the project card is archived or not.",
21
27
  "type": ["null", "boolean"]
22
28
  },
23
29
  "creator": {
30
+ "description": "The user who created the project card.",
24
31
  "$ref": "user.json"
25
32
  },
26
33
  "created_at": {
34
+ "description": "The date and time when the project card was created.",
27
35
  "type": "string",
28
36
  "format": "date-time"
29
37
  },
30
38
  "updated_at": {
39
+ "description": "The date and time when the project card was last updated.",
31
40
  "type": "string",
32
41
  "format": "date-time"
33
42
  },
34
43
  "column_url": {
44
+ "description": "The URL to access the project column associated with the project card.",
35
45
  "type": ["null", "string"]
36
46
  },
37
47
  "content_url": {
48
+ "description": "The URL that provides direct access to the project card's content.",
38
49
  "type": ["null", "string"]
39
50
  },
40
51
  "repository": {
52
+ "description": "The repository to which the project card is linked.",
41
53
  "type": "string"
42
54
  },
43
55
  "project_id": {
56
+ "description": "The unique identifier of the project to which the project card belongs.",
44
57
  "type": "integer"
45
58
  },
46
59
  "column_id": {
60
+ "description": "The unique identifier of the project column that the project card belongs to.",
47
61
  "type": "integer"
48
62
  }
49
63
  }
@@ -3,35 +3,45 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "url": {
6
+ "description": "The API URL to fetch more details about this project column.",
6
7
  "type": ["null", "string"]
7
8
  },
8
9
  "project_url": {
10
+ "description": "The URL to view the project associated with this column.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "cards_url": {
14
+ "description": "The API URL to fetch the cards in this project column.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "id": {
18
+ "description": "The unique identification number of this project column.",
15
19
  "type": ["null", "integer"]
16
20
  },
17
21
  "node_id": {
22
+ "description": "The node ID of this project column used in the GraphQL API.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "name": {
26
+ "description": "The name given to this project column.",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "created_at": {
30
+ "description": "The date and time when this project column was created.",
24
31
  "type": "string",
25
32
  "format": "date-time"
26
33
  },
27
34
  "updated_at": {
35
+ "description": "The date and time when this project column was last updated.",
28
36
  "type": "string",
29
37
  "format": "date-time"
30
38
  },
31
39
  "repository": {
40
+ "description": "The repository to which this project column belongs.",
32
41
  "type": "string"
33
42
  },
34
43
  "project_id": {
44
+ "description": "The ID of the project to which this column belongs.",
35
45
  "type": "integer"
36
46
  }
37
47
  }
@@ -3,46 +3,60 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "The repository associated with the project.",
6
7
  "type": "string"
7
8
  },
8
9
  "owner_url": {
10
+ "description": "The URL to view the owner or creator of the project.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "url": {
14
+ "description": "The URL for accessing the project.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "html_url": {
18
+ "description": "The HTML URL for viewing the project.",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "columns_url": {
22
+ "description": "The URL to view the project's columns or categories.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "id": {
26
+ "description": "The unique identifier for the project.",
21
27
  "type": ["null", "integer"]
22
28
  },
23
29
  "node_id": {
30
+ "description": "The Node ID associated with the project.",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "name": {
34
+ "description": "The name of the project.",
27
35
  "type": ["null", "string"]
28
36
  },
29
37
  "body": {
38
+ "description": "The description or main content of the project.",
30
39
  "type": ["null", "string"]
31
40
  },
32
41
  "number": {
42
+ "description": "The project number or identifier.",
33
43
  "type": ["null", "integer"]
34
44
  },
35
45
  "state": {
46
+ "description": "The state or status of the project.",
36
47
  "type": ["null", "string"]
37
48
  },
38
49
  "creator": {
50
+ "description": "The user or entity who created the project.",
39
51
  "$ref": "user.json"
40
52
  },
41
53
  "created_at": {
54
+ "description": "The date and time when the project was created.",
42
55
  "type": "string",
43
56
  "format": "date-time"
44
57
  },
45
58
  "updated_at": {
59
+ "description": "The date and time when the project was last updated.",
46
60
  "type": "string",
47
61
  "format": "date-time"
48
62
  }
@@ -3,77 +3,100 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "closed": {
6
+ "description": "Indicates whether the project is closed or not.",
6
7
  "type": ["null", "boolean"]
7
8
  },
8
9
  "created_at": {
10
+ "description": "The date and time when the project was created.",
9
11
  "type": ["null", "string"],
10
12
  "format": "date-time"
11
13
  },
12
14
  "creator": {
15
+ "description": "Information about the user who created the project.",
13
16
  "type": ["null", "object"],
14
17
  "properties": {
15
18
  "avatarUrl": {
19
+ "description": "The URL to the creator's avatar image.",
16
20
  "type": ["null", "string"]
17
21
  },
18
22
  "login": {
23
+ "description": "The username of the creator.",
19
24
  "type": ["null", "string"]
20
25
  },
21
26
  "resourcePath": {
27
+ "description": "The resource path for the creator's profile.",
22
28
  "type": ["null", "string"]
23
29
  },
24
30
  "url": {
31
+ "description": "The URL to the creator's profile.",
25
32
  "type": ["null", "string"]
26
33
  }
27
34
  }
28
35
  },
29
36
  "closed_at": {
37
+ "description": "The date and time when the project was closed.",
30
38
  "type": ["null", "string"],
31
39
  "format": "date-time"
32
40
  },
33
41
  "updated_at": {
42
+ "description": "The date and time when the project was last updated.",
34
43
  "type": ["null", "string"],
35
44
  "format": "date-time"
36
45
  },
37
46
  "node_id": {
47
+ "description": "The node ID of the project.",
38
48
  "type": ["null", "string"]
39
49
  },
40
50
  "id": {
51
+ "description": "The unique identifier of the project.",
41
52
  "type": ["null", "integer"]
42
53
  },
43
54
  "number": {
55
+ "description": "The project number.",
44
56
  "type": ["null", "integer"]
45
57
  },
46
58
  "public": {
59
+ "description": "Indicates whether the project is public or private.",
47
60
  "type": ["null", "boolean"]
48
61
  },
49
62
  "readme": {
63
+ "description": "The README content of the project.",
50
64
  "type": ["null", "string"]
51
65
  },
52
66
  "short_description": {
67
+ "description": "A brief description of the project.",
53
68
  "type": ["null", "string"]
54
69
  },
55
70
  "template": {
71
+ "description": "Indicates whether the project is a template or not.",
56
72
  "type": ["null", "boolean"]
57
73
  },
58
74
  "title": {
75
+ "description": "The title of the project.",
59
76
  "type": ["null", "string"]
60
77
  },
61
78
  "url": {
79
+ "description": "The URL to access the project.",
62
80
  "type": ["null", "string"]
63
81
  },
64
82
  "viewerCanClose": {
83
+ "description": "Indicates whether the current viewer can close the project.",
65
84
  "type": ["null", "boolean"]
66
85
  },
67
86
  "viewerCanReopen": {
87
+ "description": "Indicates whether the current viewer can reopen the project.",
68
88
  "type": ["null", "boolean"]
69
89
  },
70
90
  "viewerCanUpdate": {
91
+ "description": "Indicates whether the current viewer can update the project.",
71
92
  "type": ["null", "boolean"]
72
93
  },
73
94
  "owner_id": {
95
+ "description": "The ID of the project owner.",
74
96
  "type": ["null", "string"]
75
97
  },
76
98
  "repository": {
99
+ "description": "Information about the repository associated with the project.",
77
100
  "type": "string"
78
101
  }
79
102
  }
@@ -3,25 +3,32 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "id": {
6
+ "description": "The unique identifier for the reaction.",
6
7
  "type": ["null", "integer"]
7
8
  },
8
9
  "node_id": {
10
+ "description": "A unique identifier for the reaction node.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "content": {
14
+ "description": "The type of reaction content, e.g., '+1', 'heart', 'laugh', etc.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "created_at": {
18
+ "description": "The timestamp when the reaction was created.",
15
19
  "type": "string",
16
20
  "format": "date-time"
17
21
  },
18
22
  "user": {
23
+ "description": "The user who reacted to the pull request comment.",
19
24
  "$ref": "user_graphql.json"
20
25
  },
21
26
  "repository": {
27
+ "description": "The repository associated with the pull request comment.",
22
28
  "type": "string"
23
29
  },
24
30
  "comment_id": {
31
+ "description": "The ID of the pull request comment to which the reaction belongs.",
25
32
  "type": "integer"
26
33
  }
27
34
  }
@@ -3,77 +3,99 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "sha": {
6
+ "description": "SHA of the commit.",
6
7
  "type": ["null", "string"]
7
8
  },
8
9
  "node_id": {
10
+ "description": "Node ID of the commit.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "commit": {
14
+ "description": "Details about the commit related to the pull request.",
12
15
  "type": "object",
13
16
  "properties": {
14
17
  "author": {
18
+ "description": "Details about the author of the commit.",
15
19
  "type": "object",
16
20
  "properties": {
17
21
  "name": {
22
+ "description": "Name of the author.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "email": {
26
+ "description": "Email address of the author.",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "date": {
30
+ "description": "Date and time the commit was authored.",
24
31
  "type": "string",
25
32
  "format": "date-time"
26
33
  }
27
34
  }
28
35
  },
29
36
  "committer": {
37
+ "description": "Details about the committer of the commit.",
30
38
  "type": "object",
31
39
  "properties": {
32
40
  "name": {
41
+ "description": "Name of the committer.",
33
42
  "type": ["null", "string"]
34
43
  },
35
44
  "email": {
45
+ "description": "Email address of the committer.",
36
46
  "type": ["null", "string"]
37
47
  },
38
48
  "date": {
49
+ "description": "Date and time the commit was committed.",
39
50
  "type": "string",
40
51
  "format": "date-time"
41
52
  }
42
53
  }
43
54
  },
44
55
  "message": {
56
+ "description": "Commit message.",
45
57
  "type": ["null", "string"]
46
58
  },
47
59
  "tree": {
60
+ "description": "Information about the tree associated with the commit.",
48
61
  "type": "object",
49
62
  "properties": {
50
63
  "sha": {
64
+ "description": "SHA of the tree.",
51
65
  "type": ["null", "string"]
52
66
  },
53
67
  "url": {
68
+ "description": "URL to retrieve more details about the tree.",
54
69
  "type": ["null", "string"]
55
70
  }
56
71
  }
57
72
  },
58
73
  "url": {
74
+ "description": "URL to access more details about the commit.",
59
75
  "type": ["null", "string"]
60
76
  },
61
77
  "comment_count": {
78
+ "description": "Number of comments on the commit.",
62
79
  "type": ["null", "integer"]
63
80
  },
64
81
  "verification": {
82
+ "description": "Verification status of the commit.",
65
83
  "type": "object",
66
84
  "properties": {
67
85
  "verified": {
86
+ "description": "Indicates if the commit is verified.",
68
87
  "type": ["null", "boolean"]
69
88
  },
70
89
  "reason": {
90
+ "description": "Reason for verification status.",
71
91
  "type": ["null", "string"]
72
92
  },
73
93
  "signature": {
94
+ "description": "Signature of the commit for verification.",
74
95
  "type": ["null", "string"]
75
96
  },
76
97
  "payload": {
98
+ "description": "Payload data used for verification.",
77
99
  "type": ["null", "string"]
78
100
  }
79
101
  }
@@ -81,41 +103,52 @@
81
103
  }
82
104
  },
83
105
  "url": {
106
+ "description": "URL to access more details about the commit.",
84
107
  "type": ["null", "string"]
85
108
  },
86
109
  "html_url": {
110
+ "description": "URL to view the commit in a web browser.",
87
111
  "type": ["null", "string"]
88
112
  },
89
113
  "comments_url": {
114
+ "description": "URL to retrieve comments related to the commit.",
90
115
  "type": ["null", "string"]
91
116
  },
92
117
  "author": {
118
+ "description": "Details about the author of the commit.",
93
119
  "$ref": "user.json"
94
120
  },
95
121
  "committer": {
122
+ "description": "Details about the committer of the commit.",
96
123
  "$ref": "user.json"
97
124
  },
98
125
  "parents": {
126
+ "description": "List of parent commits associated with the commit.",
99
127
  "type": "array",
100
128
  "items": {
101
129
  "type": "object",
102
130
  "properties": {
103
131
  "sha": {
132
+ "description": "SHA of the parent commit.",
104
133
  "type": ["null", "string"]
105
134
  },
106
135
  "url": {
136
+ "description": "URL to access more details about the parent commit.",
107
137
  "type": ["null", "string"]
108
138
  },
109
139
  "html_url": {
140
+ "description": "URL to view the parent commit in a web browser.",
110
141
  "type": ["null", "string"]
111
142
  }
112
143
  }
113
144
  }
114
145
  },
115
146
  "repository": {
147
+ "description": "Details about the repository where the commit was made.",
116
148
  "type": "string"
117
149
  },
118
150
  "pull_number": {
151
+ "description": "Number associated with the pull request.",
119
152
  "type": "integer"
120
153
  }
121
154
  }
@@ -3,80 +3,101 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "The repository to which the pull request belongs.",
6
7
  "type": "string"
7
8
  },
8
9
  "id": {
10
+ "description": "The unique identifier of the pull request.",
9
11
  "type": ["null", "integer"]
10
12
  },
11
13
  "node_id": {
14
+ "description": "The node ID of the pull request.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "number": {
18
+ "description": "The number of the pull request.",
15
19
  "type": ["null", "integer"]
16
20
  },
17
21
  "merged": {
22
+ "description": "Indicates if the pull request has been merged.",
18
23
  "type": ["null", "boolean"]
19
24
  },
20
25
  "mergeable": {
26
+ "description": "Indicates if the pull request is mergeable.",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "can_be_rebased": {
30
+ "description": "Indicates whether the pull request can be rebased onto the base branch.",
24
31
  "type": ["null", "boolean"]
25
32
  },
26
33
  "merge_state_status": {
34
+ "description": "The status of the merge state for the pull request.",
27
35
  "type": ["null", "string"]
28
36
  },
29
37
  "merged_by": {
30
- "$ref": "user_graphql.json"
31
- },
32
- "merged_by": {
38
+ "description": "The user who merged the pull request.",
33
39
  "type": ["null", "object"],
34
40
  "properties": {
35
41
  "login": {
42
+ "description": "The username of the user who merged the pull request.",
36
43
  "type": ["null", "string"]
37
44
  },
38
45
  "id": {
46
+ "description": "The unique identifier of the user who merged the pull request.",
39
47
  "type": ["null", "integer"]
40
48
  },
41
49
  "node_id": {
50
+ "description": "The node ID of the user who merged the pull request.",
42
51
  "type": ["null", "string"]
43
52
  },
44
53
  "avatar_url": {
54
+ "description": "The URL of the avatar of the user who merged the pull request.",
45
55
  "type": ["null", "string"]
46
56
  },
47
57
  "html_url": {
58
+ "description": "The HTML URL of the user who merged the pull request.",
48
59
  "type": ["null", "string"]
49
60
  },
50
61
  "type": {
62
+ "description": "The type of user who merged the pull request.",
51
63
  "type": ["null", "string"]
52
64
  },
53
65
  "site_admin": {
66
+ "description": "Indicates if the user who merged the pull request is a site admin.",
54
67
  "type": ["null", "boolean"]
55
68
  }
56
69
  }
57
70
  },
58
71
  "comments": {
72
+ "description": "The total number of comments on the pull request.",
59
73
  "type": ["null", "integer"]
60
74
  },
61
75
  "review_comments": {
76
+ "description": "The total number of review comments on the pull request.",
62
77
  "type": ["null", "integer"]
63
78
  },
64
79
  "maintainer_can_modify": {
80
+ "description": "Indicates if maintainers can modify the pull request.",
65
81
  "type": ["null", "boolean"]
66
82
  },
67
83
  "commits": {
84
+ "description": "The total number of commits in the pull request.",
68
85
  "type": ["null", "integer"]
69
86
  },
70
87
  "additions": {
88
+ "description": "The total number of lines added in the pull request.",
71
89
  "type": ["null", "integer"]
72
90
  },
73
91
  "deletions": {
92
+ "description": "The total number of lines deleted in the pull request.",
74
93
  "type": ["null", "integer"]
75
94
  },
76
95
  "changed_files": {
96
+ "description": "The number of files changed in the pull request.",
77
97
  "type": ["null", "integer"]
78
98
  },
79
99
  "updated_at": {
100
+ "description": "The date and time when the pull request was last updated.",
80
101
  "type": "string",
81
102
  "format": "date-time"
82
103
  }