faros-airbyte-common 0.9.91 → 0.9.93

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.
@@ -3,6 +3,25 @@ import { GetResponseDataTypeFromEndpointMethod } from '@octokit/types';
3
3
  declare const octokit: Octokit;
4
4
  export type AppInstallation = GetResponseDataTypeFromEndpointMethod<typeof octokit.apps.listInstallations>[0];
5
5
  export type Organization = Pick<GetResponseDataTypeFromEndpointMethod<typeof octokit.orgs.get>, 'login' | 'name' | 'type' | 'html_url' | 'created_at' | 'updated_at'>;
6
+ export type Repository = {
7
+ org: string;
8
+ } & Pick<GetResponseDataTypeFromEndpointMethod<typeof octokit.repos.listForOrg>[0], 'name' | 'full_name' | 'private' | 'description' | 'language' | 'size' | 'default_branch' | 'html_url' | 'topics' | 'created_at' | 'updated_at'>;
9
+ export type User = {
10
+ org: string;
11
+ login: string;
12
+ name?: string;
13
+ email?: string;
14
+ type: string;
15
+ html_url: string;
16
+ };
17
+ export type Team = {
18
+ org: string;
19
+ parentSlug: string | null;
20
+ } & Pick<GetResponseDataTypeFromEndpointMethod<typeof octokit.teams.list>[0], 'name' | 'slug' | 'description'>;
21
+ export type TeamMembership = {
22
+ team: string;
23
+ user: string;
24
+ };
6
25
  export type CopilotSeatsStreamRecord = CopilotSeat | CopilotSeatsEmpty;
7
26
  export type CopilotSeat = {
8
27
  empty?: never;
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/github/types.ts"],"names":[],"mappings":";;;AAAA,wCAAsC;AAGtC,MAAM,OAAO,GAAY,IAAI,cAAO,EAAE,CAAC;AA6BvC,IAAY,UAEX;AAFD,WAAY,UAAU;IACpB,uCAAyB,CAAA;AAC3B,CAAC,EAFW,UAAU,0BAAV,UAAU,QAErB"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/github/types.ts"],"names":[],"mappings":";;;AAAA,wCAAsC;AAGtC,MAAM,OAAO,GAAY,IAAI,cAAO,EAAE,CAAC;AAoEvC,IAAY,UAEX;AAFD,WAAY,UAAU;IACpB,uCAAyB,CAAA;AAC3B,CAAC,EAFW,UAAU,0BAAV,UAAU,QAErB"}