faros-airbyte-common 0.18.12 → 0.18.13

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.
@@ -7,7 +7,7 @@ export type FarosProjectOutput = {
7
7
  } & Pick<ProjectSchema, 'archived' | 'created_at' | 'default_branch' | 'description' | 'empty_repo' | 'name' | 'namespace' | 'owner' | 'path' | 'path_with_namespace' | 'updated_at' | 'visibility' | 'web_url'>;
8
8
  export type FarosUserOutput = {
9
9
  readonly __brand: 'FarosUser';
10
- group_id?: string;
10
+ group_ids: string[];
11
11
  } & Pick<UserSchema, 'username'> & Partial<Pick<UserSchema, 'email' | 'name' | 'state' | 'web_url'>>;
12
12
  export type FarosGroupOutput = {
13
13
  readonly __brand: 'FarosGroup';