faros-airbyte-common 0.10.66 → 0.10.68
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.
|
@@ -7697,8 +7697,10 @@ export type PullRequestReviewsQuery = {
|
|
|
7697
7697
|
nodes?: Array<{
|
|
7698
7698
|
state: PullRequestReviewState;
|
|
7699
7699
|
submittedAt?: string | null;
|
|
7700
|
+
updatedAt: string;
|
|
7700
7701
|
databaseId?: number | null;
|
|
7701
7702
|
url: string;
|
|
7703
|
+
body: string;
|
|
7702
7704
|
author?: {
|
|
7703
7705
|
login: string;
|
|
7704
7706
|
html_url: string;
|
|
@@ -7983,8 +7985,10 @@ export type PullRequestsQuery = {
|
|
|
7983
7985
|
nodes?: Array<{
|
|
7984
7986
|
state: PullRequestReviewState;
|
|
7985
7987
|
submittedAt?: string | null;
|
|
7988
|
+
updatedAt: string;
|
|
7986
7989
|
databaseId?: number | null;
|
|
7987
7990
|
url: string;
|
|
7991
|
+
body: string;
|
|
7988
7992
|
author?: {
|
|
7989
7993
|
login: string;
|
|
7990
7994
|
html_url: string;
|
|
@@ -8092,8 +8096,10 @@ export type RepoTagsQuery = {
|
|
|
8092
8096
|
export type ReviewFieldsFragment = {
|
|
8093
8097
|
state: PullRequestReviewState;
|
|
8094
8098
|
submittedAt?: string | null;
|
|
8099
|
+
updatedAt: string;
|
|
8095
8100
|
databaseId?: number | null;
|
|
8096
8101
|
url: string;
|
|
8102
|
+
body: string;
|
|
8097
8103
|
author?: {
|
|
8098
8104
|
login: string;
|
|
8099
8105
|
html_url: string;
|
|
@@ -8187,8 +8193,10 @@ export type ReviewsFragment = {
|
|
|
8187
8193
|
nodes?: Array<{
|
|
8188
8194
|
state: PullRequestReviewState;
|
|
8189
8195
|
submittedAt?: string | null;
|
|
8196
|
+
updatedAt: string;
|
|
8190
8197
|
databaseId?: number | null;
|
|
8191
8198
|
url: string;
|
|
8199
|
+
body: string;
|
|
8192
8200
|
author?: {
|
|
8193
8201
|
login: string;
|
|
8194
8202
|
html_url: string;
|
package/lib/github/types.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ type PullRequestCommentNode = GetResponseDataTypeFromEndpointMethod<typeof octok
|
|
|
29
29
|
export type PullRequestComment = {
|
|
30
30
|
repository: string;
|
|
31
31
|
user: Pick<PullRequestCommentNode['user'], 'login' | 'name' | 'email' | 'html_url' | 'type'>;
|
|
32
|
-
} & Pick<PullRequestCommentNode, 'id' | 'body' | 'created_at' | 'updated_at' | 'pull_request_url'>;
|
|
32
|
+
} & Pick<PullRequestCommentNode, 'id' | 'body' | 'created_at' | 'updated_at' | 'pull_request_url' | 'html_url'>;
|
|
33
33
|
export type PullRequestReview = PullRequestNode['reviews']['nodes'][0];
|
|
34
34
|
export type PullRequestReviewRequest = PullRequestNode['reviewRequests']['nodes'][0];
|
|
35
35
|
export type Label = {
|
|
@@ -87,6 +87,11 @@ export type Issue = {
|
|
|
87
87
|
repo: string;
|
|
88
88
|
} & IssuesQuery['repository']['issues']['nodes'][0];
|
|
89
89
|
export type IssueAssignment = Issue['assignments']['nodes'][0];
|
|
90
|
+
type IssueCommentNode = GetResponseDataTypeFromEndpointMethod<typeof octokit.issues.listCommentsForRepo>[0];
|
|
91
|
+
export type IssueComment = {
|
|
92
|
+
repository: string;
|
|
93
|
+
user: Pick<IssueCommentNode['user'], 'login' | 'name' | 'email' | 'html_url' | 'type'>;
|
|
94
|
+
} & Pick<IssueCommentNode, 'id' | 'body' | 'created_at' | 'updated_at' | 'issue_url' | 'html_url'>;
|
|
90
95
|
export type CopilotSeatsStreamRecord = CopilotSeat | CopilotSeatEnded | CopilotSeatsEmpty;
|
|
91
96
|
export type CopilotSeat = {
|
|
92
97
|
empty?: never;
|
|
@@ -120,24 +125,6 @@ export type CopilotUsageSummary = {
|
|
|
120
125
|
team: string | null;
|
|
121
126
|
} & GetResponseDataTypeFromEndpointMethod<typeof octokit.copilot.usageMetricsForOrg>[0];
|
|
122
127
|
export type LanguageEditorBreakdown = CopilotUsageSummary['breakdown'][0];
|
|
123
|
-
export type ContributorStats = {
|
|
124
|
-
org: string;
|
|
125
|
-
repo: string;
|
|
126
|
-
user: {
|
|
127
|
-
login: string;
|
|
128
|
-
name?: string;
|
|
129
|
-
email?: string;
|
|
130
|
-
html_url: string;
|
|
131
|
-
type: string;
|
|
132
|
-
};
|
|
133
|
-
total: number;
|
|
134
|
-
weeks: {
|
|
135
|
-
w?: number;
|
|
136
|
-
a?: number;
|
|
137
|
-
d?: number;
|
|
138
|
-
c?: number;
|
|
139
|
-
}[];
|
|
140
|
-
};
|
|
141
128
|
export type CodeScanningAlert = {
|
|
142
129
|
org: string;
|
|
143
130
|
repo: string;
|
package/lib/github/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/github/types.ts"],"names":[],"mappings":";;;AAAA,wCAAsC;AActC,MAAM,OAAO,GAAY,IAAI,cAAO,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/github/types.ts"],"names":[],"mappings":";;;AAAA,wCAAsC;AActC,MAAM,OAAO,GAAY,IAAI,cAAO,EAAE,CAAC;AA4NvC,IAAY,UAEX;AAFD,WAAY,UAAU;IACpB,uCAAyB,CAAA;AAC3B,CAAC,EAFW,UAAU,0BAAV,UAAU,QAErB"}
|