Skip to content

Commit

Permalink
build: 0.1.34
Browse files Browse the repository at this point in the history
  • Loading branch information
wss-git committed Dec 30, 2021
1 parent 6285ae5 commit be22556
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/lib/component/alias.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ interface IProps {
serviceName: string;
description?: string;
versionId?: string;
versionLatest?: boolean;
aliasName?: string;
gversion?: string;
weight?: number;
Expand All @@ -29,6 +30,7 @@ interface Publish {
serviceName: string;
aliasName: string;
versionId: string;
versionLatest?: boolean;
description?: string;
gversion?: string;
weight?: number;
Expand Down Expand Up @@ -66,7 +68,7 @@ export default class Alias {
region: string;
credentials: ICredentials;
findAlias({ serviceName, aliasName }: FindAlias): Promise<any>;
publish({ serviceName, description, aliasName, versionId, gversion, weight }: Publish): Promise<void>;
publish({ serviceName, description, aliasName, versionId, versionLatest, gversion, weight }: Publish): Promise<void>;
list({ serviceName }: {
serviceName: string;
}, table?: boolean): Promise<any>;
Expand Down
6 changes: 6 additions & 0 deletions dist/lib/help/invoke.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ export declare const INVOKE: ({
alias: string;
type: StringConstructor;
typeLabel?: undefined;
} | {
name: string;
description: string;
type: NumberConstructor;
alias?: undefined;
typeLabel?: undefined;
} | {
name: string;
description: string;
Expand Down
21 changes: 20 additions & 1 deletion dist/lib/help/logs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,28 @@ export declare const LOGS: ({
} | {
name: string;
description: string;
alias: string;
type: BooleanConstructor;
typeLabel?: undefined;
alias?: undefined;
})[];
content?: undefined;
} | {
header: string;
optionList: ({
name: string;
description: string;
type: StringConstructor;
alias?: undefined;
} | {
name: string;
description: string;
alias: string;
type: BooleanConstructor;
} | {
name: string;
description: string;
alias: string;
type: StringConstructor;
})[];
content?: undefined;
} | {
Expand Down
4 changes: 3 additions & 1 deletion dist/lib/interface/component/fc-remote-invoke.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
export interface FcSyncProps {
export interface FcInvokeProps {
region: string;
serviceName: string;
functionName: string;
qualifier?: string;
timeout?: number;
runtime?: string;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fc",
"version": "0.1.28",
"version": "0.1.34",
"main": "./dist/index.js",
"dependencies": {
"@alicloud/fc2": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Type: Component
Name: fc
Provider:
- 阿里云
Version: 0.1.33
Version: 0.1.34
Description: 阿里云函数计算基础组件
HomePage: https://github.com/devsapp/fc
Tags:
Expand Down

0 comments on commit be22556

Please sign in to comment.