Skip to content

Commit 94276bd

Browse files
committed
Update README, CHANGELOG, version
1 parent 9ac0ae1 commit 94276bd

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to the Crowdin Visual Studio Code Plugin extension will be d
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.0]
9+
10+
### Changed
11+
12+
- Updated Languages, Source Files, Translations, Translation Status, Glossaries APIs
13+
814
## [1.0.0]
915

1016
### Added

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For more about Crowdin API see the [documentation](https://support.crowdin.com/e
3939
<summary>Typescript</summary>
4040

4141
```typescript
42-
import crowdin, { Credentials } from 'crowdin-api-client';
42+
import crowdin, { Credentials } from '@crowdin/crowdin-api-client';
4343

4444
// credentials
4545
const credentials: Credentials = {
@@ -57,7 +57,7 @@ const projects = await projectsGroupsApi.listProjects();
5757
Or specific API instances:
5858

5959
```typescript
60-
import { Credentials, ProjectsGroups } from 'crowdin-api-client';
60+
import { Credentials, ProjectsGroups } from '@crowdin/crowdin-api-client';
6161

6262
// credentials
6363
const credentials: Credentials = {
@@ -78,7 +78,7 @@ const projects = await projectsGroupsApi.listProjects();
7878
<summary>Javascript</summary>
7979

8080
```javascript
81-
import crowdin from 'crowdin-api-client';
81+
import crowdin from '@crowdin/crowdin-api-client';
8282

8383
// initialization of crowdin client
8484
const { projectsGroupsApi } = new crowdin({
@@ -93,7 +93,7 @@ const projects = await projectsGroupsApi.listProjects();
9393
Or specific API instances:
9494

9595
```javascript
96-
import { ProjectsGroups } from 'crowdin-api-client';
96+
import { ProjectsGroups } from '@crowdin/crowdin-api-client';
9797

9898
// initialization of ProjectsGroups
9999
const projectsGroupsApi = new ProjectsGroups({
@@ -114,7 +114,7 @@ This client uses [axios](https://github.com/axios/axios) which internally uses `
114114
So there is an option to use http client based on [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
115115

116116
```typescript
117-
import { ProjectsGroups, HttpClientType } from 'crowdin-api-client';
117+
import { ProjectsGroups, HttpClientType } from '@crowdin/crowdin-api-client';
118118

119119
const projectsGroupsApi = new ProjectsGroups(credentials, {
120120
httpClientType: HttpClientType.FETCH

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crowdin/crowdin-api-client",
3-
"version": "1.0.5",
3+
"version": "1.1.0",
44
"description": "JavaScript library for Crowdin API v2.",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

0 commit comments

Comments
 (0)