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.
Files changed (42) hide show
  1. {airbyte_source_github-1.7.1.dev202404051859.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.dev202404051859.dist-info/RECORD +0 -62
  41. {airbyte_source_github-1.7.1.dev202404051859.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
  42. {airbyte_source_github-1.7.1.dev202404051859.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -260,12 +260,15 @@
260
260
  "additionalProperties": true,
261
261
  "properties": {
262
262
  "repository": {
263
+ "description": "The repository associated with the issue",
263
264
  "type": "string"
264
265
  },
265
266
  "issue_number": {
267
+ "description": "The number of the issue",
266
268
  "type": "integer"
267
269
  },
268
270
  "labeled": {
271
+ "description": "Event representing a label being added to the issue",
269
272
  "$ref": "#/definitions/base_event",
270
273
  "label": {
271
274
  "type": ["null", "object"],
@@ -280,6 +283,7 @@
280
283
  }
281
284
  },
282
285
  "unlabeled": {
286
+ "description": "Event representing a label being removed from the issue",
283
287
  "$ref": "#/definitions/base_event",
284
288
  "label": {
285
289
  "type": "object",
@@ -294,6 +298,7 @@
294
298
  }
295
299
  },
296
300
  "milestoned": {
301
+ "description": "Event representing the assignment of a milestone to the issue",
297
302
  "$ref": "#/definitions/base_event",
298
303
  "milestone": {
299
304
  "type": "object",
@@ -305,6 +310,7 @@
305
310
  }
306
311
  },
307
312
  "demilestoned": {
313
+ "description": "Event representing the removal of a milestone",
308
314
  "$ref": "#/definitions/base_event",
309
315
  "milestone": {
310
316
  "type": "object",
@@ -316,6 +322,7 @@
316
322
  }
317
323
  },
318
324
  "renamed": {
325
+ "description": "Event representing the renaming of an entity",
319
326
  "$ref": "#/definitions/base_event",
320
327
  "rename": {
321
328
  "type": "object",
@@ -330,6 +337,7 @@
330
337
  }
331
338
  },
332
339
  "review_requested": {
340
+ "description": "Event representing a review request being made",
333
341
  "$ref": "#/definitions/base_event",
334
342
  "review_requester": {
335
343
  "type": "object",
@@ -583,6 +591,7 @@
583
591
  }
584
592
  },
585
593
  "review_request_removed": {
594
+ "description": "Event representing a review request being removed",
586
595
  "$ref": "#/definitions/base_event",
587
596
  "review_requester": {
588
597
  "type": "object",
@@ -836,6 +845,7 @@
836
845
  }
837
846
  },
838
847
  "review_dismissed": {
848
+ "description": "Event representing a review being dismissed",
839
849
  "$ref": "#/definitions/base_event",
840
850
  "dismissed_review": {
841
851
  "type": "object",
@@ -856,26 +866,41 @@
856
866
  }
857
867
  },
858
868
  "locked": {
869
+ "description": "Event representing the issue being locked",
859
870
  "$ref": "#/definitions/base_event",
860
871
  "lock_reason": {
861
872
  "type": ["string", "null"]
862
873
  }
863
874
  },
864
875
  "added_to_project": {
876
+ "description": "Event representing an issue being added to a project board",
865
877
  "$ref": "#/definitions/base_event",
866
878
  "project_card": {
867
879
  "type": "object",
868
880
  "properties": {
869
- "id": { "type": "integer" },
870
- "url": { "type": "string" },
871
- "project_id": { "type": "integer" },
872
- "project_url": { "type": "string" },
873
- "column_name": { "type": "string" },
874
- "previous_column_name": { "type": "string" }
881
+ "id": {
882
+ "type": "integer"
883
+ },
884
+ "url": {
885
+ "type": "string"
886
+ },
887
+ "project_id": {
888
+ "type": "integer"
889
+ },
890
+ "project_url": {
891
+ "type": "string"
892
+ },
893
+ "column_name": {
894
+ "type": "string"
895
+ },
896
+ "previous_column_name": {
897
+ "type": "string"
898
+ }
875
899
  }
876
900
  }
877
901
  },
878
902
  "moved_columns_in_project": {
903
+ "description": "Event representing the movement of columns in a project board",
879
904
  "$ref": "#/definitions/base_event",
880
905
  "project_card": {
881
906
  "type": "object",
@@ -904,6 +929,7 @@
904
929
  }
905
930
  },
906
931
  "removed_from_project": {
932
+ "description": "Event representing the removal of the issue from a project board",
907
933
  "$ref": "#/definitions/base_event",
908
934
  "project_card": {
909
935
  "type": "object",
@@ -932,124 +958,239 @@
932
958
  }
933
959
  },
934
960
  "converted_note_to_issue": {
961
+ "description": "Event representing a note being converted to an issue",
935
962
  "$ref": "#/definitions/base_event",
936
963
  "project_card": {
937
964
  "type": "object",
938
965
  "properties": {
939
- "id": { "type": "integer" },
940
- "url": { "type": "string" },
941
- "project_id": { "type": "integer" },
942
- "project_url": { "type": "string" },
943
- "column_name": { "type": "string" },
944
- "previous_column_name": { "type": "string" }
966
+ "id": {
967
+ "type": "integer"
968
+ },
969
+ "url": {
970
+ "type": "string"
971
+ },
972
+ "project_id": {
973
+ "type": "integer"
974
+ },
975
+ "project_url": {
976
+ "type": "string"
977
+ },
978
+ "column_name": {
979
+ "type": "string"
980
+ },
981
+ "previous_column_name": {
982
+ "type": "string"
983
+ }
945
984
  }
946
985
  }
947
986
  },
948
987
  "comment": {
988
+ "description": "Event representing a comment being added to the issue",
949
989
  "$ref": "events/comment.json"
950
990
  },
951
991
  "cross-referenced": {
992
+ "description": "Event representing a cross reference being made",
952
993
  "$ref": "events/cross_referenced.json"
953
994
  },
954
995
  "committed": {
996
+ "description": "Event representing a commit being made",
955
997
  "$ref": "events/committed.json"
956
998
  },
957
999
  "closed": {
1000
+ "description": "Event representing the issue being closed",
958
1001
  "$ref": "#/definitions/base_event"
959
1002
  },
960
1003
  "head_ref_deleted": {
1004
+ "description": "Event representing the deletion of a branch",
961
1005
  "$ref": "#/definitions/base_event"
962
1006
  },
963
1007
  "head_ref_restored": {
1008
+ "description": "Event representing the restoration of a branch",
964
1009
  "$ref": "#/definitions/base_event"
965
1010
  },
966
1011
  "reopened": {
1012
+ "description": "Event representing the reopening of the issue",
967
1013
  "$ref": "#/definitions/base_event"
968
1014
  },
969
1015
  "reviewed": {
1016
+ "description": "Event representing a review being completed",
970
1017
  "$ref": "events/reviewed.json"
971
1018
  },
972
1019
  "commented": {
1020
+ "description": "Event representing a comment being added to the issue",
973
1021
  "$ref": "events/comment.json"
974
1022
  },
975
1023
  "commit_commented": {
1024
+ "description": "Event representing a comment being added to a commit",
976
1025
  "$ref": "events/commented.json"
977
1026
  },
978
1027
  "assigned": {
1028
+ "description": "Event representing an issue being assigned to a user",
979
1029
  "$ref": "#/definitions/base_event",
980
1030
  "assignee": {
1031
+ "description": "The user who has been assigned to the issue",
981
1032
  "title": "Simple User",
982
- "description": "A GitHub user.",
983
1033
  "type": "object",
984
1034
  "properties": {
985
- "name": { "type": ["string", "null"] },
986
- "email": { "type": ["string", "null"] },
987
- "login": { "type": "string" },
988
- "id": { "type": "integer" },
989
- "node_id": { "type": "string" },
990
- "avatar_url": { "type": "string" },
991
- "gravatar_id": { "type": ["string", "null"] },
992
- "url": { "type": "string" },
993
- "html_url": { "type": "string" },
994
- "followers_url": { "type": "string" },
995
- "following_url": { "type": "string" },
996
- "gists_url": { "type": "string" },
997
- "starred_url": { "type": "string" },
998
- "subscriptions_url": { "type": "string" },
999
- "organizations_url": { "type": "string" },
1000
- "repos_url": { "type": "string" },
1001
- "events_url": { "type": "string" },
1002
- "received_events_url": { "type": "string" },
1003
- "type": { "type": "string" },
1004
- "site_admin": { "type": "boolean" },
1005
- "starred_at": { "type": "string", "format": "date-time" }
1035
+ "name": {
1036
+ "type": ["string", "null"]
1037
+ },
1038
+ "email": {
1039
+ "type": ["string", "null"]
1040
+ },
1041
+ "login": {
1042
+ "type": "string"
1043
+ },
1044
+ "id": {
1045
+ "type": "integer"
1046
+ },
1047
+ "node_id": {
1048
+ "type": "string"
1049
+ },
1050
+ "avatar_url": {
1051
+ "type": "string"
1052
+ },
1053
+ "gravatar_id": {
1054
+ "type": ["string", "null"]
1055
+ },
1056
+ "url": {
1057
+ "type": "string"
1058
+ },
1059
+ "html_url": {
1060
+ "type": "string"
1061
+ },
1062
+ "followers_url": {
1063
+ "type": "string"
1064
+ },
1065
+ "following_url": {
1066
+ "type": "string"
1067
+ },
1068
+ "gists_url": {
1069
+ "type": "string"
1070
+ },
1071
+ "starred_url": {
1072
+ "type": "string"
1073
+ },
1074
+ "subscriptions_url": {
1075
+ "type": "string"
1076
+ },
1077
+ "organizations_url": {
1078
+ "type": "string"
1079
+ },
1080
+ "repos_url": {
1081
+ "type": "string"
1082
+ },
1083
+ "events_url": {
1084
+ "type": "string"
1085
+ },
1086
+ "received_events_url": {
1087
+ "type": "string"
1088
+ },
1089
+ "type": {
1090
+ "type": "string"
1091
+ },
1092
+ "site_admin": {
1093
+ "type": "boolean"
1094
+ },
1095
+ "starred_at": {
1096
+ "type": "string",
1097
+ "format": "date-time"
1098
+ }
1006
1099
  }
1007
1100
  }
1008
1101
  },
1009
1102
  "unassigned": {
1103
+ "description": "Event representing the unassignment of a user from the issue",
1010
1104
  "$ref": "#/definitions/base_event",
1011
1105
  "assignee": {
1106
+ "description": "The user who was previously assigned to the issue",
1012
1107
  "title": "Simple User",
1013
- "description": "A GitHub user.",
1014
1108
  "type": "object",
1015
1109
  "properties": {
1016
- "name": { "type": ["string", "null"] },
1017
- "email": { "type": ["string", "null"] },
1018
- "login": { "type": "string" },
1019
- "id": { "type": "integer" },
1020
- "node_id": { "type": "string" },
1021
- "avatar_url": { "type": "string" },
1022
- "gravatar_id": { "type": ["string", "null"] },
1023
- "url": { "type": "string" },
1024
- "html_url": { "type": "string" },
1025
- "followers_url": { "type": "string" },
1026
- "following_url": { "type": "string" },
1027
- "gists_url": { "type": "string" },
1028
- "starred_url": { "type": "string" },
1029
- "subscriptions_url": { "type": "string" },
1030
- "organizations_url": { "type": "string" },
1031
- "repos_url": { "type": "string" },
1032
- "events_url": { "type": "string" },
1033
- "received_events_url": { "type": "string" },
1034
- "type": { "type": "string" },
1035
- "site_admin": { "type": "boolean" },
1036
- "starred_at": { "type": "string", "format": "date-time" }
1110
+ "name": {
1111
+ "type": ["string", "null"]
1112
+ },
1113
+ "email": {
1114
+ "type": ["string", "null"]
1115
+ },
1116
+ "login": {
1117
+ "type": "string"
1118
+ },
1119
+ "id": {
1120
+ "type": "integer"
1121
+ },
1122
+ "node_id": {
1123
+ "type": "string"
1124
+ },
1125
+ "avatar_url": {
1126
+ "type": "string"
1127
+ },
1128
+ "gravatar_id": {
1129
+ "type": ["string", "null"]
1130
+ },
1131
+ "url": {
1132
+ "type": "string"
1133
+ },
1134
+ "html_url": {
1135
+ "type": "string"
1136
+ },
1137
+ "followers_url": {
1138
+ "type": "string"
1139
+ },
1140
+ "following_url": {
1141
+ "type": "string"
1142
+ },
1143
+ "gists_url": {
1144
+ "type": "string"
1145
+ },
1146
+ "starred_url": {
1147
+ "type": "string"
1148
+ },
1149
+ "subscriptions_url": {
1150
+ "type": "string"
1151
+ },
1152
+ "organizations_url": {
1153
+ "type": "string"
1154
+ },
1155
+ "repos_url": {
1156
+ "type": "string"
1157
+ },
1158
+ "events_url": {
1159
+ "type": "string"
1160
+ },
1161
+ "received_events_url": {
1162
+ "type": "string"
1163
+ },
1164
+ "type": {
1165
+ "type": "string"
1166
+ },
1167
+ "site_admin": {
1168
+ "type": "boolean"
1169
+ },
1170
+ "starred_at": {
1171
+ "type": "string",
1172
+ "format": "date-time"
1173
+ }
1037
1174
  }
1038
1175
  }
1039
1176
  },
1040
1177
  "state_change": {
1178
+ "description": "Event representing a change in state",
1041
1179
  "$ref": "#/definitions/base_event",
1042
1180
  "state_reason": {
1043
1181
  "type": ["string", "null"]
1044
1182
  }
1045
1183
  },
1046
1184
  "connected": {
1185
+ "description": "Event representing a connection being established",
1047
1186
  "$ref": "#/definitions/base_event"
1048
1187
  },
1049
1188
  "auto_squash_enabled": {
1189
+ "description": "Event representing auto-squash being enabled on a commit",
1050
1190
  "$ref": "#/definitions/base_event"
1051
1191
  },
1052
1192
  "merged": {
1193
+ "description": "Event representing the merging of the issue",
1053
1194
  "$ref": "#/definitions/base_event"
1054
1195
  }
1055
1196
  }