New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mpserverless-sdk-core

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mpserverless-sdk-core - npm Package Compare versions

Comparing version 0.0.3 to 0.0.5

5

dist/client.d.ts

@@ -29,2 +29,7 @@ import * as $tea from '@alicloud/tea-typescript';

}>;
static invokeFunctionWithPageExe(openApiName: string, params: {
[key: string]: any;
}): Promise<{
string: any;
}>;
static invokePreFunction(preFunctionName: string, openApiName: string, params: {

@@ -31,0 +36,0 @@ [key: string]: any;

@@ -42,2 +42,10 @@ "use strict";

}
static async invokeFunctionWithPageExe(openApiName, params) {
const args = {
'method': openApiName,
params
};
let response = await this.invoker.function.invoke("alipay-openapi", args);
return response.result;
}
static async invokePreFunction(preFunctionName, openApiName, params) {

@@ -44,0 +52,0 @@ const args = {

2

package.json
{
"name": "mpserverless-sdk-core",
"version": "0.0.3",
"version": "0.0.5",
"description": "Alipay miniprogram Serverless SDK Core",

@@ -5,0 +5,0 @@ "main": "dist/client.js",

@@ -51,3 +51,13 @@ // This file is auto-generated, don't edit it

static async invokeFunctionWithPageExe(openApiName: string, params: { [key: string]: any }): Promise<{ string }> {
const args = {
'method': openApiName,
params
};
let response = await this.invoker.function.invoke("alipay-openapi", args);
return response.result;
}
static async invokePreFunction(preFunctionName: string, openApiName: string, params: { [key: string]: any }): Promise<{ [key: string]: any }> {

@@ -54,0 +64,0 @@ const args = {

Sorry, the diff of this file is not supported yet

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