Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@forestvpn/forestvpn_api

Package Overview
Dependencies
Maintainers
5
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forestvpn/forestvpn_api - npm Package Compare versions

Comparing version 3.4.1 to 3.5.0

2

api.ts

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -104,6 +104,7 @@ * OpenAPI spec version: 2.0

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
listLocations: async (X_Device_Coordinates?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/locations/`;

@@ -122,2 +123,6 @@ // use dummy base URL string because the URL constructor only accepts absolute URLs.

if (X_Device_Coordinates !== undefined && X_Device_Coordinates !== null) {
localVarHeaderParameter['X-Device-Coordinates'] = String(X_Device_Coordinates);
}
const query = new URLSearchParams(localVarUrlObj.search);

@@ -177,7 +182,8 @@ for (const key in localVarQueryParameter) {

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async listLocations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<Location>>>> {
const localVarAxiosArgs = await GeoApiAxiosParamCreator(configuration).listLocations(options);
async listLocations(X_Device_Coordinates?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<Location>>>> {
const localVarAxiosArgs = await GeoApiAxiosParamCreator(configuration).listLocations(X_Device_Coordinates, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {

@@ -218,7 +224,8 @@ const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async listLocations(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Location>>> {
return GeoApiFp(configuration).listLocations(options).then((request) => request(axios, basePath));
async listLocations(X_Device_Coordinates?: string, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Location>>> {
return GeoApiFp(configuration).listLocations(X_Device_Coordinates, options).then((request) => request(axios, basePath));
},

@@ -258,2 +265,3 @@ };

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.

@@ -263,5 +271,5 @@ * @throws {RequiredError}

*/
public async listLocations(options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<Location>>> {
return GeoApiFp(this.configuration).listLocations(options).then((request) => request(this.axios, this.basePath));
public async listLocations(X_Device_Coordinates?: string, options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<Location>>> {
return GeoApiFp(this.configuration).listLocations(X_Device_Coordinates, options).then((request) => request(this.axios, this.basePath));
}
}

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -162,3 +162,3 @@ * OpenAPI spec version: 2.0

*/
async getSupportTicketCategory(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<TicketCategory>>> {
async getSupportTicketCategory(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<TicketCategory>>>> {
const localVarAxiosArgs = await SupportApiAxiosParamCreator(configuration).getSupportTicketCategory(options);

@@ -197,3 +197,3 @@ return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {

*/
async getSupportTicketCategory(options?: AxiosRequestConfig): Promise<AxiosResponse<TicketCategory>> {
async getSupportTicketCategory(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<TicketCategory>>> {
return SupportApiFp(configuration).getSupportTicketCategory(options).then((request) => request(axios, basePath));

@@ -231,5 +231,5 @@ },

*/
public async getSupportTicketCategory(options?: AxiosRequestConfig) : Promise<AxiosResponse<TicketCategory>> {
public async getSupportTicketCategory(options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<TicketCategory>>> {
return SupportApiFp(this.configuration).getSupportTicketCategory(options).then((request) => request(this.axios, this.basePath));
}
}

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -17,3 +17,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -20,0 +20,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -40,6 +40,7 @@ * OpenAPI spec version: 2.0

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
listLocations: (X_Device_Coordinates?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -68,6 +69,7 @@ /**

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<Location>>>>;
listLocations(X_Device_Coordinates?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<Location>>>>;
};

@@ -96,6 +98,7 @@ /**

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Location>>>;
listLocations(X_Device_Coordinates?: string, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Location>>>;
};

@@ -128,2 +131,3 @@ /**

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.

@@ -133,3 +137,3 @@ * @throws {RequiredError}

*/
listLocations(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Location>>>;
listLocations(X_Device_Coordinates?: string, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<Location>>>;
}

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -164,6 +164,7 @@ * OpenAPI spec version: 2.0

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations: function (options) {
listLocations: function (X_Device_Coordinates, options) {
if (options === void 0) { options = {}; }

@@ -181,2 +182,6 @@ return __awaiter(_this, void 0, void 0, function () {

localVarQueryParameter = {};
// authentication bearerAuth required
if (X_Device_Coordinates !== undefined && X_Device_Coordinates !== null) {
localVarHeaderParameter['X-Device-Coordinates'] = String(X_Device_Coordinates);
}
query = new URLSearchParams(localVarUrlObj.search);

@@ -258,6 +263,7 @@ for (key in localVarQueryParameter) {

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations: function (options) {
listLocations: function (X_Device_Coordinates, options) {
return __awaiter(this, void 0, void 0, function () {

@@ -267,3 +273,3 @@ var localVarAxiosArgs;

switch (_a.label) {
case 0: return [4 /*yield*/, exports.GeoApiAxiosParamCreator(configuration).listLocations(options)];
case 0: return [4 /*yield*/, exports.GeoApiAxiosParamCreator(configuration).listLocations(X_Device_Coordinates, options)];
case 1:

@@ -318,9 +324,10 @@ localVarAxiosArgs = _a.sent();

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listLocations: function (options) {
listLocations: function (X_Device_Coordinates, options) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
return [2 /*return*/, exports.GeoApiFp(configuration).listLocations(options).then(function (request) { return request(axios, basePath); })];
return [2 /*return*/, exports.GeoApiFp(configuration).listLocations(X_Device_Coordinates, options).then(function (request) { return request(axios, basePath); })];
});

@@ -375,2 +382,3 @@ });

* @summary Location list
* @param {string} [X_Device_Coordinates]
* @param {*} [options] Override http request option.

@@ -380,7 +388,7 @@ * @throws {RequiredError}

*/
GeoApi.prototype.listLocations = function (options) {
GeoApi.prototype.listLocations = function (X_Device_Coordinates, options) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
return [2 /*return*/, exports.GeoApiFp(this.configuration).listLocations(options).then(function (request) { return request(_this.axios, _this.basePath); })];
return [2 /*return*/, exports.GeoApiFp(this.configuration).listLocations(X_Device_Coordinates, options).then(function (request) { return request(_this.axios, _this.basePath); })];
});

@@ -387,0 +395,0 @@ });

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -60,3 +60,3 @@ * OpenAPI spec version: 2.0

*/
getSupportTicketCategory(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<TicketCategory>>>;
getSupportTicketCategory(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<TicketCategory>>>>;
};

@@ -84,3 +84,3 @@ /**

*/
getSupportTicketCategory(options?: AxiosRequestConfig): Promise<AxiosResponse<TicketCategory>>;
getSupportTicketCategory(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<TicketCategory>>>;
};

@@ -112,3 +112,3 @@ /**

*/
getSupportTicketCategory(options?: AxiosRequestConfig): Promise<AxiosResponse<TicketCategory>>;
getSupportTicketCategory(options?: AxiosRequestConfig): Promise<AxiosResponse<Array<TicketCategory>>>;
}

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -68,3 +68,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -71,0 +71,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -17,3 +17,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -20,0 +20,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -35,3 +35,3 @@ * OpenAPI spec version: 2.0

*/
files?: Array<Blob>;
files?: Array<Blob> | null;
}
/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -8,3 +8,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -11,0 +11,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -50,2 +50,14 @@ * OpenAPI spec version: 2.0

/**
* it's distance in kilometers between an user (longitude and latitude from request object) and a location object
* @type {number}
* @memberof Location
*/
distance?: number;
/**
* it's a rate from 0 to 1 which shows a connection quality. where 1 is good and 0 is bad
* @type {number}
* @memberof Location
*/
latency_rate?: number;
/**
*

@@ -52,0 +64,0 @@ * @type {Array<string>}

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -8,3 +8,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -11,0 +11,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -8,3 +8,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -11,0 +11,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -8,3 +8,3 @@ "use strict";

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -11,0 +11,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -5,0 +5,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -38,3 +38,3 @@ * OpenAPI spec version: 2.0

*/
files?: Array<Blob>;
files?: Array<Blob> | null;
}

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -53,2 +53,14 @@ * OpenAPI spec version: 2.0

/**
* it's distance in kilometers between an user (longitude and latitude from request object) and a location object
* @type {number}
* @memberof Location
*/
distance?: number;
/**
* it's a rate from 0 to 1 which shows a connection quality. where 1 is good and 0 is bad
* @type {number}
* @memberof Location
*/
latency_rate?: number;
/**
*

@@ -55,0 +67,0 @@ * @type {Array<string>}

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

@@ -5,3 +5,3 @@ /* tslint:disable */

* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
* ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data.
*

@@ -8,0 +8,0 @@ * OpenAPI spec version: 2.0

{
"name": "@forestvpn/forestvpn_api",
"version": "3.4.1",
"version": "3.5.0",
"description": "A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)",

@@ -5,0 +5,0 @@ "author": "ForestVPN",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc