faros-airbyte-common 0.16.48 → 0.16.50
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.
package/lib/github/types.d.ts
CHANGED
|
@@ -128,10 +128,10 @@ export type CopilotUsageSummary = {
|
|
|
128
128
|
total_lines_suggested: number;
|
|
129
129
|
total_lines_accepted: number;
|
|
130
130
|
total_active_users: number;
|
|
131
|
-
total_active_chat_users: number;
|
|
132
131
|
total_chats: number;
|
|
133
132
|
total_chat_insertion_events: number;
|
|
134
133
|
total_chat_copy_events: number;
|
|
134
|
+
total_active_chat_users: number;
|
|
135
135
|
breakdown: {
|
|
136
136
|
language: string;
|
|
137
137
|
editor: string;
|
|
@@ -164,6 +164,7 @@ export type CopilotUsageSummary = {
|
|
|
164
164
|
}[];
|
|
165
165
|
};
|
|
166
166
|
export type LanguageEditorBreakdown = CopilotUsageSummary['breakdown'][0];
|
|
167
|
+
export type ModelBreakdown = LanguageEditorBreakdown['model_breakdown'][0];
|
|
167
168
|
export type ChatBreakdown = CopilotUsageSummary['chat_breakdown'][0];
|
|
168
169
|
export type CodeScanningAlert = {
|
|
169
170
|
org: string;
|
package/lib/gitlab/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Camelize, CommitSchema, EventSchema, GroupSchema, IssueSchema, MergeRequestSchema, NoteSchema, ProjectSchema, ReleaseSchema, TagSchema, UserSchema } from '@gitbeaker/rest';
|
|
1
|
+
import { Camelize, CommitSchema, DeploymentSchema, EventSchema, GroupSchema, IssueSchema, MergeRequestSchema, NoteSchema, ProjectSchema, ReleaseSchema, TagSchema, UserSchema } from '@gitbeaker/rest';
|
|
2
2
|
export type FarosProjectOutput = {
|
|
3
3
|
readonly __brand: 'FarosProject';
|
|
4
4
|
id: string;
|
|
@@ -55,3 +55,8 @@ export type FarosReleaseOutput = {
|
|
|
55
55
|
group_id: string;
|
|
56
56
|
project_path: string;
|
|
57
57
|
} & Pick<ReleaseSchema, 'tag_name' | 'name' | 'description' | 'created_at' | 'released_at' | '_links'>;
|
|
58
|
+
export type FarosDeploymentOutput = {
|
|
59
|
+
readonly __brand: 'FarosDeployment';
|
|
60
|
+
group_id: string;
|
|
61
|
+
project_path: string;
|
|
62
|
+
} & Pick<DeploymentSchema, 'id' | 'iid' | 'ref' | 'sha' | 'user' | 'created_at' | 'updated_at' | 'status' | 'deployable' | 'environment'>;
|