Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing field "path" to Directory type #322

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/sourceFiles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
directoryId?: number,
limit?: number,
offset?: number,
recursion?: any,

Check warning on line 234 in src/sourceFiles/index.ts

View workflow job for this annotation

GitHub Actions / code-coverage

Unexpected any. Specify a different type
filter?: string,
): Promise<ResponseList<SourceFilesModel.File>>;
listProjectFiles(
Expand All @@ -240,7 +240,7 @@
deprecatedDirectoryId?: number,
deprecatedLimit?: number,
deprecatedOffset?: number,
deprecatedRecursion?: any,

Check warning on line 243 in src/sourceFiles/index.ts

View workflow job for this annotation

GitHub Actions / code-coverage

Unexpected any. Specify a different type
deprecatedFilter?: string,
): Promise<ResponseList<SourceFilesModel.File>> {
let url = `${this.url}/projects/${projectId}/files`;
Expand Down Expand Up @@ -507,6 +507,7 @@
name: string;
title: string;
exportPattern: string;
path: string;
priority: Priority;
createdAt: string;
updatedAt: string;
Expand All @@ -524,7 +525,7 @@
export interface ListProjectFilesOptions extends PaginationOptions {
branchId?: number;
directoryId?: number;
recursion?: any;

Check warning on line 528 in src/sourceFiles/index.ts

View workflow job for this annotation

GitHub Actions / code-coverage

Unexpected any. Specify a different type
filter?: string;
}

Expand Down
Loading