Skip to content

Commit

Permalink
added targetLanguages to Project model (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
yevheniyJ authored Aug 25, 2020
1 parent aad641f commit f15ac24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crowdin/crowdin-api-client",
"version": "1.8.14",
"version": "1.8.15",
"description": "JavaScript library for Crowdin API v2.",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/projectsGroups/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { BooleanInt, CrowdinApi, PatchRequest, ResponseList, ResponseObject } from '../core';
import { LanguagesModel } from '../languages';

export class ProjectsGroups extends CrowdinApi {
/**
Expand Down Expand Up @@ -153,6 +154,7 @@ export namespace ProjectsGroupsModel {
createdAt: string;
updatedAt: string;
lastActivity: string;
targetLanguages: LanguagesModel.Language[];
}

export interface CreateProjectRequest {
Expand Down

0 comments on commit f15ac24

Please sign in to comment.