Skip to content

Commit

Permalink
Merge pull request #391 from devsapp/wss/dev
Browse files Browse the repository at this point in the history
build 0.1.28
  • Loading branch information
wss-git authored Oct 29, 2021
2 parents 61af2c5 + dd89fdc commit 9a47bc5
Show file tree
Hide file tree
Showing 9 changed files with 2,886 additions and 3,098 deletions.
6 changes: 3 additions & 3 deletions dist/command/invoke.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ export interface InvokeInputsArgs {
*/
'invocation-type'?: string;
/**
* Event data (strings) passed to the function during invocation (default: "").Http function format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Event data (strings) passed to the function during invocation (default: "").Http function format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
*/
'event'?: string;
/**
* Event funtion: A file containing event data passed to the function during invoke. Http function: A file containing http request options sent to http trigger. Format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Event funtion: A file containing event data passed to the function during invoke. Http function: A file containing http request options sent to http trigger. Format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
*/
'event-file'?: string;
/**
* Read from standard input, to support script pipeline.Http function format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Read from standard input, to support script pipeline.Http function format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
*/
'event-stdin'?: string;
}
6 changes: 3 additions & 3 deletions dist/command/proxied.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ export interface ProxiedSetupInputsArgs {
*/
export interface ProxiedInvokeInputsArgs {
/**
* Event data (strings) passed to the function during invocation (default: "").Http function format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Event data (strings) passed to the function during invocation (default: "").Http function format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
* @alias e
*/
event: string;
/**
* Event funtion: A file containing event data passed to the function during invoke. Http function: A file containing http request options sent to http trigger. Format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Event funtion: A file containing event data passed to the function during invoke. Http function: A file containing http request options sent to http trigger. Format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
* @alias f
*/
'event-file': string;
/**
* Read from standard input, to support script pipeline.Http function format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Read from standard input, to support script pipeline.Http function format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
* @alias s
*/
'event-stdin': string;
Expand Down
6 changes: 3 additions & 3 deletions dist/command/remote.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ export interface RemoteSetupInputsArgs {
*/
export interface RemoteInvokeInputsArgs {
/**
* Event data (strings) passed to the function during invocation (default: "").Http function format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Event data (strings) passed to the function during invocation (default: "").Http function format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
* @alias e
*/
event: string;
/**
* Event funtion: A file containing event data passed to the function during invoke. Http function: A file containing http request options sent to https strigger. Format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Event funtion: A file containing event data passed to the function during invoke. Http function: A file containing http request options sent to https strigger. Format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
* @alias f
*/
'event-file': string;
/**
* Read from standard input, to support script pipeline.Http function format refers to [https://github.com/devsapp/fc-remote-invoke#特别说明]
* Read from standard input, to support script pipeline.Http function format refers to [https://github.com/devsapp/fc/blob/main/docs/Usage/invoke.md#invoke-http-parameter]
* @alias s
*/
'event-stdin': string;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions dist/lib/client.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
export default class Client {
static fcClient: any;
static setFcClient(region: string, credentials: any): Promise<any>;
static getFcEndpoint(): Promise<any>;
static extractAccountId(endpoint: string): string;
static extractRegion(endpoint: string): string;
static extractProtocol(endpoint: string): string;
static setFcClient(region: string, credentials: any, access: string): Promise<any>;
}
1 change: 0 additions & 1 deletion dist/lib/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ export declare function getFcNames(argsParse: any, inputsProps: any): {
export declare function isHttpFunction(props: IProperties): boolean;
export declare const tableShow: (data: any, showKey: any) => void;
export declare function componentMethodCaller(inputs: IInputs, componentName: string, methodName: string, props?: any, args?: string, argsObj?: any): Promise<any>;
export declare function extract(regex: RegExp, endpoint: string): string;
Loading

0 comments on commit 9a47bc5

Please sign in to comment.