faros-airbyte-common 0.19.36 → 0.19.38
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
|
@@ -209,7 +209,11 @@ export type Artifact = {
|
|
|
209
209
|
workflow_id: number;
|
|
210
210
|
run_id: number;
|
|
211
211
|
} & Pick<GetResponseDataTypeFromEndpointMethod<typeof octokit.actions.listWorkflowRunArtifacts>['artifacts'][0], 'id' | 'name' | 'size_in_bytes' | 'url' | 'archive_download_url' | 'expired' | 'created_at' | 'expires_at' | 'updated_at'>;
|
|
212
|
-
export type Enterprise = EnterpriseQuery['enterprise']
|
|
212
|
+
export type Enterprise = Pick<EnterpriseQuery['enterprise'], 'slug'> & {
|
|
213
|
+
name?: string;
|
|
214
|
+
url?: string;
|
|
215
|
+
createdAt?: string;
|
|
216
|
+
};
|
|
213
217
|
export type EnterpriseTeamsResponse = {
|
|
214
218
|
slug: string;
|
|
215
219
|
name: string;
|