We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 585059a commit 8e55125Copy full SHA for 8e55125
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@craftgate/craftgate",
3
- "version": "1.0.65",
+ "version": "1.0.66",
4
"description": "Craftgate API JavaScript Client",
5
"main": "dist/index.js",
6
"scripts": {
src/lib/HttpClient.ts
@@ -85,7 +85,7 @@ export class HttpClient {
85
config.headers[API_KEY_HEADER_NAME] = this._options.apiKey;
86
config.headers[RANDOM_HEADER_NAME] = randomStr;
87
config.headers[AUTH_VERSION_HEADER_NAME] = '1';
88
- config.headers[CLIENT_VERSION_HEADER_NAME] = 'craftgate-node-client:1.0.65';
+ config.headers[CLIENT_VERSION_HEADER_NAME] = 'craftgate-node-client:1.0.66';
89
if (this._options.language) {
90
config.headers[LANGUAGE_HEADER_NAME] = this._options.language;
91
}
0 commit comments