airbyte-source-github 1.7.1.dev202404051859__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.dev202404051859.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.dev202404051859.dist-info/RECORD +0 -62
- {airbyte_source_github-1.7.1.dev202404051859.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
- {airbyte_source_github-1.7.1.dev202404051859.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -3,96 +3,124 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "The repository where the commit was made.",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"branch": {
|
10
|
+
"description": "The branch name where the commit was made.",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"created_at": {
|
14
|
+
"description": "The creation date and time of the commit.",
|
12
15
|
"type": "string",
|
13
16
|
"format": "date-time"
|
14
17
|
},
|
15
18
|
"url": {
|
19
|
+
"description": "URL for accessing the commit data.",
|
16
20
|
"type": ["null", "string"]
|
17
21
|
},
|
18
22
|
"sha": {
|
23
|
+
"description": "The SHA of the commit.",
|
19
24
|
"type": ["null", "string"]
|
20
25
|
},
|
21
26
|
"node_id": {
|
27
|
+
"description": "The unique identifier of the commit node.",
|
22
28
|
"type": ["null", "string"]
|
23
29
|
},
|
24
30
|
"html_url": {
|
31
|
+
"description": "URL for viewing the commit on GitHub.",
|
25
32
|
"type": ["null", "string"]
|
26
33
|
},
|
27
34
|
"comments_url": {
|
35
|
+
"description": "URL for accessing comments on the commit.",
|
28
36
|
"type": ["null", "string"]
|
29
37
|
},
|
30
38
|
"commit": {
|
39
|
+
"description": "Information about the commit including author, committer, tree, and verification details.",
|
31
40
|
"type": ["null", "object"],
|
32
41
|
"properties": {
|
33
42
|
"author": {
|
43
|
+
"description": "Information about the author of the commit.",
|
34
44
|
"type": ["null", "object"],
|
35
45
|
"properties": {
|
36
46
|
"name": {
|
47
|
+
"description": "Name of the author of the commit.",
|
37
48
|
"type": ["null", "string"]
|
38
49
|
},
|
39
50
|
"email": {
|
51
|
+
"description": "Email of the author of the commit.",
|
40
52
|
"type": ["null", "string"]
|
41
53
|
},
|
42
54
|
"date": {
|
55
|
+
"description": "The date and time of the commit authored.",
|
43
56
|
"type": "string",
|
44
57
|
"format": "date-time"
|
45
58
|
}
|
46
59
|
}
|
47
60
|
},
|
48
61
|
"committer": {
|
62
|
+
"description": "Information about the committer who applied the commit.",
|
49
63
|
"type": ["null", "object"],
|
50
64
|
"properties": {
|
51
65
|
"name": {
|
66
|
+
"description": "Name of the committer of the commit.",
|
52
67
|
"type": ["null", "string"]
|
53
68
|
},
|
54
69
|
"email": {
|
70
|
+
"description": "Email of the committer of the commit.",
|
55
71
|
"type": ["null", "string"]
|
56
72
|
},
|
57
73
|
"date": {
|
74
|
+
"description": "The date and time of the commit committed.",
|
58
75
|
"type": "string",
|
59
76
|
"format": "date-time"
|
60
77
|
}
|
61
78
|
}
|
62
79
|
},
|
63
80
|
"message": {
|
81
|
+
"description": "The commit message.",
|
64
82
|
"type": ["null", "string"]
|
65
83
|
},
|
66
84
|
"tree": {
|
85
|
+
"description": "Details about the tree object associated with the commit.",
|
67
86
|
"type": ["null", "object"],
|
68
87
|
"properties": {
|
69
88
|
"sha": {
|
89
|
+
"description": "SHA of the commit tree.",
|
70
90
|
"type": ["null", "string"]
|
71
91
|
},
|
72
92
|
"url": {
|
93
|
+
"description": "URL for accessing the commit tree.",
|
73
94
|
"type": ["null", "string"]
|
74
95
|
}
|
75
96
|
}
|
76
97
|
},
|
77
98
|
"url": {
|
99
|
+
"description": "URL for accessing the commit details.",
|
78
100
|
"type": ["null", "string"]
|
79
101
|
},
|
80
102
|
"comment_count": {
|
103
|
+
"description": "Number of comments on the commit.",
|
81
104
|
"type": ["null", "integer"]
|
82
105
|
},
|
83
106
|
"verification": {
|
107
|
+
"description": "Verification status of the commit.",
|
84
108
|
"type": ["null", "object"],
|
85
109
|
"properties": {
|
86
110
|
"verified": {
|
111
|
+
"description": "Indicates if the commit is verified.",
|
87
112
|
"type": ["null", "boolean"]
|
88
113
|
},
|
89
114
|
"reason": {
|
115
|
+
"description": "Reason for the verification result.",
|
90
116
|
"type": ["null", "string"]
|
91
117
|
},
|
92
118
|
"signature": {
|
119
|
+
"description": "The signature used for verification.",
|
93
120
|
"type": ["null", "string"]
|
94
121
|
},
|
95
122
|
"payload": {
|
123
|
+
"description": "The payload used for verification.",
|
96
124
|
"type": ["null", "string"]
|
97
125
|
}
|
98
126
|
}
|
@@ -100,23 +128,30 @@
|
|
100
128
|
}
|
101
129
|
},
|
102
130
|
"author": {
|
131
|
+
"description": "The author of the commit.",
|
103
132
|
"$ref": "user.json"
|
104
133
|
},
|
105
134
|
"committer": {
|
135
|
+
"description": "The committer of the commit.",
|
106
136
|
"$ref": "user.json"
|
107
137
|
},
|
108
138
|
"parents": {
|
139
|
+
"description": "List of parent commits of the current commit.",
|
109
140
|
"type": ["null", "array"],
|
110
141
|
"items": {
|
142
|
+
"description": "Details about each parent commit.",
|
111
143
|
"type": ["null", "object"],
|
112
144
|
"properties": {
|
113
145
|
"sha": {
|
146
|
+
"description": "SHA of the parent commit.",
|
114
147
|
"type": ["null", "string"]
|
115
148
|
},
|
116
149
|
"url": {
|
150
|
+
"description": "URL for accessing the parent commit details.",
|
117
151
|
"type": ["null", "string"]
|
118
152
|
},
|
119
153
|
"html_url": {
|
154
|
+
"description": "URL for viewing the parent commit on GitHub.",
|
120
155
|
"type": ["null", "string"]
|
121
156
|
}
|
122
157
|
}
|
@@ -4,103 +4,127 @@
|
|
4
4
|
"title": "Contributor Activity",
|
5
5
|
"properties": {
|
6
6
|
"name": {
|
7
|
+
"description": "Name of the contributor",
|
7
8
|
"type": ["null", "string"]
|
8
9
|
},
|
9
10
|
"email": {
|
11
|
+
"description": "Email address of the contributor",
|
10
12
|
"type": ["string", "null"]
|
11
13
|
},
|
12
14
|
"login": {
|
15
|
+
"description": "GitHub username of the contributor",
|
13
16
|
"type": ["null", "string"]
|
14
17
|
},
|
15
18
|
"id": {
|
19
|
+
"description": "Unique identifier for the contributor",
|
16
20
|
"type": ["null", "integer"]
|
17
21
|
},
|
18
22
|
"node_id": {
|
23
|
+
"description": "Node ID of the contributor",
|
19
24
|
"type": ["null", "string"]
|
20
25
|
},
|
21
26
|
"avatar_url": {
|
27
|
+
"description": "URL of the contributor's avatar image",
|
22
28
|
"type": ["null", "string"],
|
23
29
|
"format": "uri"
|
24
30
|
},
|
25
31
|
"gravatar_id": {
|
32
|
+
"description": "ID associated with the contributor's Gravatar image",
|
26
33
|
"type": ["string", "null"]
|
27
34
|
},
|
28
35
|
"url": {
|
36
|
+
"description": "URL of the contributor's profile",
|
29
37
|
"type": ["null", "string"],
|
30
38
|
"format": "uri"
|
31
39
|
},
|
32
40
|
"html_url": {
|
41
|
+
"description": "URL of the contributor's profile page on GitHub",
|
33
42
|
"type": ["null", "string"],
|
34
43
|
"format": "uri"
|
35
44
|
},
|
36
45
|
"followers_url": {
|
46
|
+
"description": "URL of the contributor's followers",
|
37
47
|
"type": ["null", "string"],
|
38
48
|
"format": "uri"
|
39
49
|
},
|
40
50
|
"following_url": {
|
51
|
+
"description": "URL of the contributor's following",
|
41
52
|
"type": ["null", "string"]
|
42
53
|
},
|
43
54
|
"gists_url": {
|
55
|
+
"description": "URL of the contributor's gists",
|
44
56
|
"type": ["null", "string"]
|
45
57
|
},
|
46
58
|
"starred_url": {
|
59
|
+
"description": "URL of the starred repository",
|
47
60
|
"type": ["null", "string"]
|
48
61
|
},
|
49
62
|
"subscriptions_url": {
|
63
|
+
"description": "URL of the contributor's subscriptions",
|
50
64
|
"type": ["null", "string"],
|
51
65
|
"format": "uri"
|
52
66
|
},
|
53
67
|
"organizations_url": {
|
68
|
+
"description": "URL of the contributor's organizations",
|
54
69
|
"type": ["null", "string"],
|
55
70
|
"format": "uri"
|
56
71
|
},
|
57
72
|
"repos_url": {
|
73
|
+
"description": "URL of the contributor's repositories",
|
58
74
|
"type": ["null", "string"],
|
59
75
|
"format": "uri"
|
60
76
|
},
|
61
77
|
"events_url": {
|
78
|
+
"description": "URL of the contributor's events",
|
62
79
|
"type": ["null", "string"]
|
63
80
|
},
|
64
81
|
"repository": {
|
82
|
+
"description": "Repository the contributor is associated with",
|
65
83
|
"type": ["null", "string"]
|
66
84
|
},
|
67
85
|
"received_events_url": {
|
86
|
+
"description": "URL of the events received by the contributor",
|
68
87
|
"type": ["null", "string"],
|
69
88
|
"format": "uri"
|
70
89
|
},
|
71
90
|
"type": {
|
91
|
+
"description": "Type of the contributor (e.g., User, Organization)",
|
72
92
|
"type": ["null", "string"]
|
73
93
|
},
|
74
94
|
"site_admin": {
|
95
|
+
"description": "Boolean value indicating if the contributor is a site admin",
|
75
96
|
"type": ["null", "boolean"]
|
76
97
|
},
|
77
98
|
"starred_at": {
|
99
|
+
"description": "Date and time when the repository was starred by the contributor",
|
78
100
|
"type": ["null", "string"],
|
79
101
|
"format": "date-time"
|
80
102
|
},
|
81
103
|
"total": {
|
104
|
+
"description": "Total activity count of the contributor",
|
82
105
|
"type": ["null", "integer"]
|
83
106
|
},
|
84
107
|
"weeks": {
|
108
|
+
"description": "Activity data of the contributor per week",
|
85
109
|
"type": "array",
|
86
110
|
"items": {
|
87
111
|
"type": "object",
|
88
112
|
"properties": {
|
89
113
|
"w": {
|
90
|
-
"
|
91
|
-
"
|
114
|
+
"description": "Start of the week represented as a Unix timestamp",
|
115
|
+
"type": ["null", "integer"]
|
92
116
|
},
|
93
117
|
"a": {
|
94
|
-
"
|
95
|
-
"
|
118
|
+
"description": "Number of additions made by the contributor",
|
119
|
+
"type": ["null", "integer"]
|
96
120
|
},
|
97
121
|
"d": {
|
98
|
-
"
|
99
|
-
"
|
122
|
+
"description": "Number of deletions made by the contributor",
|
123
|
+
"type": ["null", "integer"]
|
100
124
|
},
|
101
125
|
"c": {
|
102
|
-
"
|
103
|
-
"
|
126
|
+
"description": "Number of commits made by the contributor",
|
127
|
+
"type": ["null", "integer"]
|
104
128
|
}
|
105
129
|
}
|
106
130
|
}
|
@@ -3,50 +3,65 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"url": {
|
6
|
+
"description": "URL to access more details about the deployment.",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "Unique identifier for the deployment.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "Node identifier for the deployment.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"task": {
|
18
|
+
"description": "Indicates the type of task being performed in the deployment.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"original_environment": {
|
22
|
+
"description": "Original environment name before promotion or changes.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"environment": {
|
26
|
+
"description": "The deployment environment (e.g., staging, production).",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"description": {
|
30
|
+
"description": "Description provided for the deployment.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"created_at": {
|
34
|
+
"description": "The timestamp when the deployment was created.",
|
27
35
|
"type": "string",
|
28
36
|
"format": "date-time"
|
29
37
|
},
|
30
38
|
"updated_at": {
|
39
|
+
"description": "The timestamp when the deployment was last updated.",
|
31
40
|
"type": "string",
|
32
41
|
"format": "date-time"
|
33
42
|
},
|
34
43
|
"statuses_url": {
|
44
|
+
"description": "URL to retrieve the statuses of the deployment.",
|
35
45
|
"type": ["null", "string"]
|
36
46
|
},
|
37
47
|
"repository_url": {
|
48
|
+
"description": "URL of the repository where the deployment originated.",
|
38
49
|
"type": ["null", "string"]
|
39
50
|
},
|
40
51
|
"creator": {
|
52
|
+
"description": "Details about the user who created the deployment.",
|
41
53
|
"$ref": "user.json"
|
42
54
|
},
|
43
55
|
"sha": {
|
56
|
+
"description": "The SHA hash of the deployment.",
|
44
57
|
"type": ["null", "string"]
|
45
58
|
},
|
46
59
|
"ref": {
|
60
|
+
"description": "The Git ref that was deployed.",
|
47
61
|
"type": ["null", "string"]
|
48
62
|
},
|
49
63
|
"payload": {
|
64
|
+
"description": "Additional information or data associated with the deployment.",
|
50
65
|
"oneOf": [
|
51
66
|
{
|
52
67
|
"type": "object",
|
@@ -62,15 +77,19 @@
|
|
62
77
|
]
|
63
78
|
},
|
64
79
|
"transient_environment": {
|
80
|
+
"description": "Indicates if the environment is temporary or not persistent.",
|
65
81
|
"type": ["null", "boolean"]
|
66
82
|
},
|
67
83
|
"production_environment": {
|
84
|
+
"description": "Indicates if the deployment is in a production environment.",
|
68
85
|
"type": ["null", "boolean"]
|
69
86
|
},
|
70
87
|
"performed_via_github_app": {
|
88
|
+
"description": "Indicates if the deployment was performed via a GitHub App.",
|
71
89
|
"type": ["null", "string"]
|
72
90
|
},
|
73
91
|
"repository": {
|
92
|
+
"description": "Details about the repository where the deployment originated.",
|
74
93
|
"type": "string"
|
75
94
|
}
|
76
95
|
}
|
@@ -3,60 +3,77 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "Deprecated. Use 'repo' field instead.",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"type": {
|
10
|
+
"description": "Type of event that occurred.",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"public": {
|
14
|
+
"description": "Indicates whether the event is public or not.",
|
12
15
|
"type": ["null", "boolean"]
|
13
16
|
},
|
14
17
|
"payload": {
|
18
|
+
"description": "Additional event-specific data.",
|
15
19
|
"type": ["null", "object"],
|
16
20
|
"properties": {}
|
17
21
|
},
|
18
22
|
"repo": {
|
23
|
+
"description": "Information about the repository where the event occurred.",
|
19
24
|
"type": ["null", "object"],
|
20
25
|
"properties": {
|
21
26
|
"id": {
|
27
|
+
"description": "Unique identifier for the repository.",
|
22
28
|
"type": ["null", "integer"]
|
23
29
|
},
|
24
30
|
"name": {
|
31
|
+
"description": "Name of the repository.",
|
25
32
|
"type": ["null", "string"]
|
26
33
|
},
|
27
34
|
"url": {
|
35
|
+
"description": "URL of the repository.",
|
28
36
|
"type": ["null", "string"]
|
29
37
|
}
|
30
38
|
}
|
31
39
|
},
|
32
40
|
"actor": {
|
41
|
+
"description": "Information about the user performing the event.",
|
33
42
|
"$ref": "user.json"
|
34
43
|
},
|
35
44
|
"org": {
|
45
|
+
"description": "Information about the organization associated with the event.",
|
36
46
|
"type": ["null", "object"],
|
37
47
|
"properties": {
|
38
48
|
"id": {
|
49
|
+
"description": "Unique identifier for the organization.",
|
39
50
|
"type": ["null", "integer"]
|
40
51
|
},
|
41
52
|
"login": {
|
53
|
+
"description": "Login of the organization.",
|
42
54
|
"type": ["null", "string"]
|
43
55
|
},
|
44
56
|
"gravatar_id": {
|
57
|
+
"description": "Gravatar ID of the organization.",
|
45
58
|
"type": ["null", "string"]
|
46
59
|
},
|
47
60
|
"url": {
|
61
|
+
"description": "URL of the organization.",
|
48
62
|
"type": ["null", "string"]
|
49
63
|
},
|
50
64
|
"avatar_url": {
|
65
|
+
"description": "URL of the organization's avatar.",
|
51
66
|
"type": ["null", "string"]
|
52
67
|
}
|
53
68
|
}
|
54
69
|
},
|
55
70
|
"created_at": {
|
71
|
+
"description": "The timestamp when the event occurred.",
|
56
72
|
"type": "string",
|
57
73
|
"format": "date-time"
|
58
74
|
},
|
59
75
|
"id": {
|
76
|
+
"description": "Unique identifier for the event.",
|
60
77
|
"type": ["null", "string"]
|
61
78
|
}
|
62
79
|
}
|