Socket
Socket
Sign inDemoInstall

@forestvpn/forestvpn_api

Package Overview
Dependencies
Maintainers
4
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.8.3 to 3.8.6

dist/models/source-code.d.ts

6

apis/cloud-api.ts

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

*/
async listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<any>>>> {
async listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<ModelFunction>>>> {
const localVarAxiosArgs = await CloudApiAxiosParamCreator(configuration).listFunctions(per_page, page, options);

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

*/
async listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<any>>> {
async listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<ModelFunction>>> {
return CloudApiFp(configuration).listFunctions(per_page, page, options).then((request) => request(axios, basePath));

@@ -448,3 +448,3 @@ },

*/
public async listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<any>>> {
public async listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<Array<ModelFunction>>> {
return CloudApiFp(this.configuration).listFunctions(per_page, page, options).then((request) => request(this.axios, this.basePath));

@@ -451,0 +451,0 @@ }

@@ -101,3 +101,3 @@ /**

*/
listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<any>>>>;
listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<Array<ModelFunction>>>>;
/**

@@ -150,3 +150,3 @@ *

*/
listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<any>>>;
listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<ModelFunction>>>;
/**

@@ -205,3 +205,3 @@ *

*/
listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<any>>>;
listFunctions(per_page?: number, page?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<Array<ModelFunction>>>;
/**

@@ -208,0 +208,0 @@ *

@@ -31,3 +31,3 @@ /**

*/
default_payment_method: PaymentMethod;
default_payment_method?: PaymentMethod;
/**

@@ -38,3 +38,3 @@ *

*/
default_payment_method_id: string;
default_payment_method_id?: string;
/**

@@ -41,0 +41,0 @@ *

@@ -18,3 +18,2 @@ export * from './access-token-request';

export * from './cloud-payments-secure3d';
export * from './code';
export * from './connection-mode';

@@ -73,2 +72,3 @@ export * from './constraint';

export * from './server';
export * from './source-code';
export * from './stripe-checkout-session';

@@ -75,0 +75,0 @@ export * from './stripe-payment-intent';

@@ -30,3 +30,2 @@ "use strict";

__exportStar(require("./cloud-payments-secure3d"), exports);
__exportStar(require("./code"), exports);
__exportStar(require("./connection-mode"), exports);

@@ -85,2 +84,3 @@ __exportStar(require("./constraint"), exports);

__exportStar(require("./server"), exports);
__exportStar(require("./source-code"), exports);
__exportStar(require("./stripe-checkout-session"), exports);

@@ -87,0 +87,0 @@ __exportStar(require("./stripe-payment-intent"), exports);

@@ -13,3 +13,2 @@ /**

import { Architecture } from './architecture';
import { Code } from './code';
import { FunctionEnvironment } from './function-environment';

@@ -27,3 +26,3 @@ /**

*/
id: string;
id?: string;
/**

@@ -34,3 +33,3 @@ *

*/
name?: string;
name: string;
/**

@@ -68,18 +67,18 @@ *

*
* @type {Code}
* @type {any}
* @memberof ModelFunction
*/
code?: Code;
source?: any;
/**
*
* @type {FunctionEnvironment}
* @type {string}
* @memberof ModelFunction
*/
environment?: FunctionEnvironment;
source_id: string;
/**
*
* @type {number}
* @type {FunctionEnvironment}
* @memberof ModelFunction
*/
size?: number;
environment?: FunctionEnvironment;
}

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

*/
default_payment_method: PaymentMethod;
default_payment_method?: PaymentMethod;
/**

@@ -40,3 +40,3 @@ *

*/
default_payment_method_id: string;
default_payment_method_id?: string;
/**

@@ -43,0 +43,0 @@ *

@@ -18,3 +18,2 @@ export * from './access-token-request';

export * from './cloud-payments-secure3d';
export * from './code';
export * from './connection-mode';

@@ -73,2 +72,3 @@ export * from './constraint';

export * from './server';
export * from './source-code';
export * from './stripe-checkout-session';

@@ -75,0 +75,0 @@ export * from './stripe-payment-intent';

@@ -15,3 +15,2 @@ /* tslint:disable */

import { Architecture } from './architecture';
import { Code } from './code';
import { FunctionEnvironment } from './function-environment';

@@ -29,3 +28,3 @@ /**

*/
id: string;
id?: string;
/**

@@ -36,3 +35,3 @@ *

*/
name?: string;
name: string;
/**

@@ -70,18 +69,18 @@ *

*
* @type {Code}
* @type {any}
* @memberof ModelFunction
*/
code?: Code;
source?: any;
/**
*
* @type {FunctionEnvironment}
* @type {string}
* @memberof ModelFunction
*/
environment?: FunctionEnvironment;
source_id: string;
/**
*
* @type {number}
* @type {FunctionEnvironment}
* @memberof ModelFunction
*/
size?: number;
environment?: FunctionEnvironment;
}
{
"name": "@forestvpn/forestvpn_api",
"version": "3.8.3",
"version": "3.8.6",
"description": "A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)",

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

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