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
source_github/schemas/tags.json
CHANGED
@@ -3,29 +3,37 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "Repository information related to the tag",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"name": {
|
10
|
+
"description": "Name of the tag",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"commit": {
|
14
|
+
"description": "Information about the commit associated with this tag",
|
12
15
|
"type": ["null", "object"],
|
13
16
|
"properties": {
|
14
17
|
"sha": {
|
18
|
+
"description": "The unique SHA of the commit",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"url": {
|
22
|
+
"description": "URL to view details of the commit",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
}
|
20
25
|
}
|
21
26
|
},
|
22
27
|
"zipball_url": {
|
28
|
+
"description": "URL to download a zipball archive of the repository at this tag",
|
23
29
|
"type": ["null", "string"]
|
24
30
|
},
|
25
31
|
"tarball_url": {
|
32
|
+
"description": "URL to download a tarball archive of the repository at this tag",
|
26
33
|
"type": ["null", "string"]
|
27
34
|
},
|
28
35
|
"node_id": {
|
36
|
+
"description": "Unique identifier of the tag",
|
29
37
|
"type": ["null", "string"]
|
30
38
|
}
|
31
39
|
}
|
@@ -3,63 +3,83 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"login": {
|
6
|
+
"description": "Username of the user",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "Unique identifier of the user",
|
9
11
|
"type": "integer"
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "Node ID associated with the user",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"avatar_url": {
|
18
|
+
"description": "URL of the user's avatar image",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"gravatar_id": {
|
22
|
+
"description": "Unique identifier of the user's Gravatar image",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"url": {
|
26
|
+
"description": "URL of the user's GitHub API endpoint",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"html_url": {
|
30
|
+
"description": "URL of the user's GitHub profile",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"followers_url": {
|
34
|
+
"description": "URL of the user's followers",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"following_url": {
|
38
|
+
"description": "URL of the users that the user is following",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"gists_url": {
|
42
|
+
"description": "URL of the user's gists",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"starred_url": {
|
46
|
+
"description": "URL of the repositories starred by the user",
|
36
47
|
"type": ["null", "string"]
|
37
48
|
},
|
38
49
|
"subscriptions_url": {
|
50
|
+
"description": "URL of the repositories the user is subscribed to",
|
39
51
|
"type": ["null", "string"]
|
40
52
|
},
|
41
53
|
"organizations_url": {
|
54
|
+
"description": "URL of the organizations the user belongs to",
|
42
55
|
"type": ["null", "string"]
|
43
56
|
},
|
44
57
|
"repos_url": {
|
58
|
+
"description": "URL of the user's repositories",
|
45
59
|
"type": ["null", "string"]
|
46
60
|
},
|
47
61
|
"events_url": {
|
62
|
+
"description": "URL of the events performed by the user",
|
48
63
|
"type": ["null", "string"]
|
49
64
|
},
|
50
65
|
"received_events_url": {
|
66
|
+
"description": "URL of the received events by the user",
|
51
67
|
"type": ["null", "string"]
|
52
68
|
},
|
53
69
|
"type": {
|
70
|
+
"description": "Type of user account (e.g., User or Organization)",
|
54
71
|
"type": ["null", "string"]
|
55
72
|
},
|
56
73
|
"site_admin": {
|
74
|
+
"description": "Boolean indicating if the user is a site administrator",
|
57
75
|
"type": ["null", "boolean"]
|
58
76
|
},
|
59
77
|
"organization": {
|
78
|
+
"description": "Name of the organization the user is a part of",
|
60
79
|
"type": "string"
|
61
80
|
},
|
62
81
|
"team_slug": {
|
82
|
+
"description": "Slug identifier of the user's team",
|
63
83
|
"type": "string"
|
64
84
|
}
|
65
85
|
}
|
@@ -3,21 +3,27 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"state": {
|
6
|
+
"description": "The current state of the team membership (active, pending, etc.).",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"role": {
|
10
|
+
"description": "The role or position of the user within the team.",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"url": {
|
14
|
+
"description": "The URL link to access more details about the team membership.",
|
12
15
|
"type": "string"
|
13
16
|
},
|
14
17
|
"organization": {
|
18
|
+
"description": "The name of the organization the team membership belongs to.",
|
15
19
|
"type": "string"
|
16
20
|
},
|
17
21
|
"team_slug": {
|
22
|
+
"description": "The unique identifier (slug) of the team the user belongs to.",
|
18
23
|
"type": "string"
|
19
24
|
},
|
20
25
|
"username": {
|
26
|
+
"description": "The username of the user associated with the team membership.",
|
21
27
|
"type": "string"
|
22
28
|
}
|
23
29
|
}
|
source_github/schemas/teams.json
CHANGED
@@ -3,45 +3,59 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"organization": {
|
6
|
+
"description": "The organization to which the team belongs.",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "The unique identifier of the team.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "The node identifier of the team.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"url": {
|
18
|
+
"description": "The API URL of the team.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"html_url": {
|
22
|
+
"description": "The URL of the team on GitHub.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"name": {
|
26
|
+
"description": "The name of the team.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"slug": {
|
30
|
+
"description": "The unique URL-friendly name of the team.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"description": {
|
34
|
+
"description": "The description of the team.",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"privacy": {
|
38
|
+
"description": "The privacy setting of the team.",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"notification_setting": {
|
42
|
+
"description": "The notification setting of the team.",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"permission": {
|
46
|
+
"description": "The permission level of the team.",
|
36
47
|
"type": ["null", "string"]
|
37
48
|
},
|
38
49
|
"members_url": {
|
50
|
+
"description": "The URL to fetch members of the team.",
|
39
51
|
"type": ["null", "string"]
|
40
52
|
},
|
41
53
|
"repositories_url": {
|
54
|
+
"description": "The URL to fetch repositories of the team.",
|
42
55
|
"type": ["null", "string"]
|
43
56
|
},
|
44
57
|
"parent": {
|
58
|
+
"description": "The parent team of the team.",
|
45
59
|
"type": ["null", "object"],
|
46
60
|
"properties": {},
|
47
61
|
"additionalProperties": true
|
source_github/schemas/users.json
CHANGED
@@ -3,60 +3,79 @@
|
|
3
3
|
"type": ["null", "object"],
|
4
4
|
"properties": {
|
5
5
|
"organization": {
|
6
|
+
"description": "The organization the user belongs to",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"login": {
|
10
|
+
"description": "The username of the user",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"id": {
|
14
|
+
"description": "The unique identification number of the user",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"node_id": {
|
18
|
+
"description": "The ID assigned to the user in the GraphQL API",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"avatar_url": {
|
22
|
+
"description": "The URL of the user's avatar image",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"gravatar_id": {
|
26
|
+
"description": "The Gravatar ID associated with the user's email",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"url": {
|
30
|
+
"description": "The user's GitHub API URL",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"html_url": {
|
34
|
+
"description": "The URL of the user's GitHub page",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"followers_url": {
|
38
|
+
"description": "The URL listing the user's followers",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"following_url": {
|
42
|
+
"description": "The URL listing the users being followed by the user",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"gists_url": {
|
46
|
+
"description": "The URL of the user's gists",
|
36
47
|
"type": ["null", "string"]
|
37
48
|
},
|
38
49
|
"starred_url": {
|
50
|
+
"description": "The URL listing repositories starred by the user",
|
39
51
|
"type": ["null", "string"]
|
40
52
|
},
|
41
53
|
"subscriptions_url": {
|
54
|
+
"description": "The URL listing repositories the user is subscribed to",
|
42
55
|
"type": ["null", "string"]
|
43
56
|
},
|
44
57
|
"organizations_url": {
|
58
|
+
"description": "The URL listing organizations the user belongs to",
|
45
59
|
"type": ["null", "string"]
|
46
60
|
},
|
47
61
|
"repos_url": {
|
62
|
+
"description": "The URL listing repositories owned by the user",
|
48
63
|
"type": ["null", "string"]
|
49
64
|
},
|
50
65
|
"events_url": {
|
66
|
+
"description": "The URL of the events that the user has been involved in",
|
51
67
|
"type": ["null", "string"]
|
52
68
|
},
|
53
69
|
"received_events_url": {
|
70
|
+
"description": "The URL of events received by the user",
|
54
71
|
"type": ["null", "string"]
|
55
72
|
},
|
56
73
|
"type": {
|
74
|
+
"description": "The type of user account (e.g., User or Organization)",
|
57
75
|
"type": ["null", "string"]
|
58
76
|
},
|
59
77
|
"site_admin": {
|
78
|
+
"description": "Specifies if the user is a GitHub site administrator",
|
60
79
|
"type": ["null", "boolean"]
|
61
80
|
}
|
62
81
|
}
|
@@ -3,78 +3,101 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Identifier of the job",
|
6
7
|
"type": "integer"
|
7
8
|
},
|
8
9
|
"run_id": {
|
10
|
+
"description": "Identifier of the run associated with the job",
|
9
11
|
"type": "integer"
|
10
12
|
},
|
11
13
|
"workflow_name": {
|
14
|
+
"description": "Name of the workflow associated with the job",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"head_branch": {
|
18
|
+
"description": "Name of the branch where the job was triggered",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"run_url": {
|
22
|
+
"description": "URL to view the run details associated with the job",
|
18
23
|
"type": "string"
|
19
24
|
},
|
20
25
|
"run_attempt": {
|
26
|
+
"description": "Number of the run attempt for the job",
|
21
27
|
"type": "integer"
|
22
28
|
},
|
23
29
|
"node_id": {
|
30
|
+
"description": "Node ID of the job",
|
24
31
|
"type": "string"
|
25
32
|
},
|
26
33
|
"head_sha": {
|
34
|
+
"description": "Commit SHA associated with the job",
|
27
35
|
"type": "string"
|
28
36
|
},
|
29
37
|
"url": {
|
38
|
+
"description": "URL to fetch the details of the job",
|
30
39
|
"type": "string"
|
31
40
|
},
|
32
41
|
"html_url": {
|
42
|
+
"description": "URL to view the job details in a web browser",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"status": {
|
46
|
+
"description": "Status of the job (e.g., in_progress, completed)",
|
36
47
|
"type": "string"
|
37
48
|
},
|
38
49
|
"conclusion": {
|
50
|
+
"description": "Conclusion of the job execution (e.g., success, failure)",
|
39
51
|
"type": ["null", "string"]
|
40
52
|
},
|
41
53
|
"created_at": {
|
54
|
+
"description": "Timestamp when the job was created",
|
42
55
|
"type": "string",
|
43
56
|
"format": "date-time"
|
44
57
|
},
|
45
58
|
"started_at": {
|
59
|
+
"description": "Timestamp when the job was started",
|
46
60
|
"type": "string",
|
47
61
|
"format": "date-time"
|
48
62
|
},
|
49
63
|
"completed_at": {
|
64
|
+
"description": "Timestamp when the job was completed",
|
50
65
|
"type": ["null", "string"],
|
51
66
|
"format": "date-time"
|
52
67
|
},
|
53
68
|
"name": {
|
69
|
+
"description": "Name of the job",
|
54
70
|
"type": "string"
|
55
71
|
},
|
56
72
|
"steps": {
|
73
|
+
"description": "List of steps within the job",
|
57
74
|
"type": "array",
|
58
75
|
"items": {
|
59
76
|
"type": "object",
|
60
77
|
"properties": {
|
61
78
|
"status": {
|
79
|
+
"description": "Status of the step (e.g., in_progress, completed)",
|
62
80
|
"type": "string"
|
63
81
|
},
|
64
82
|
"conclusion": {
|
83
|
+
"description": "Conclusion of the step execution (e.g., success, failure)",
|
65
84
|
"type": ["null", "string"]
|
66
85
|
},
|
67
86
|
"name": {
|
87
|
+
"description": "Name of the step",
|
68
88
|
"type": "string"
|
69
89
|
},
|
70
90
|
"number": {
|
91
|
+
"description": "Number of the step",
|
71
92
|
"type": "integer"
|
72
93
|
},
|
73
94
|
"started_at": {
|
95
|
+
"description": "Timestamp when the step was started",
|
74
96
|
"type": ["null", "string"],
|
75
97
|
"format": "date-time"
|
76
98
|
},
|
77
99
|
"completed_at": {
|
100
|
+
"description": "Timestamp when the step was completed",
|
78
101
|
"type": ["null", "string"],
|
79
102
|
"format": "date-time"
|
80
103
|
}
|
@@ -82,27 +105,34 @@
|
|
82
105
|
}
|
83
106
|
},
|
84
107
|
"check_run_url": {
|
108
|
+
"description": "URL to view the check run associated with the job",
|
85
109
|
"type": "string"
|
86
110
|
},
|
87
111
|
"labels": {
|
112
|
+
"description": "Labels associated with the job",
|
88
113
|
"type": "array",
|
89
114
|
"items": {
|
90
115
|
"type": "string"
|
91
116
|
}
|
92
117
|
},
|
93
118
|
"runner_id": {
|
119
|
+
"description": "Identifier of the runner",
|
94
120
|
"type": ["integer", "null"]
|
95
121
|
},
|
96
122
|
"runner_name": {
|
123
|
+
"description": "Name of the runner",
|
97
124
|
"type": ["null", "string"]
|
98
125
|
},
|
99
126
|
"runner_group_id": {
|
127
|
+
"description": "Identifier of the runner group",
|
100
128
|
"type": ["integer", "null"]
|
101
129
|
},
|
102
130
|
"runner_group_name": {
|
131
|
+
"description": "Name of the runner group",
|
103
132
|
"type": ["null", "string"]
|
104
133
|
},
|
105
134
|
"repository": {
|
135
|
+
"description": "Repository information associated with the job",
|
106
136
|
"type": "string"
|
107
137
|
}
|
108
138
|
}
|