@activepieces/pieces-framework 0.3.24 → 0.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/lib/piece-metadata.d.ts +1 -0
- package/src/lib/piece.d.ts +5 -5
- package/src/lib/piece.js +8 -6
- package/src/lib/piece.js.map +1 -1
- package/src/lib/property/base-prop.d.ts +7 -1
- package/src/lib/property/property.d.ts +5 -3
- package/src/lib/property/property.js +4 -0
- package/src/lib/property/property.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/pieces-framework",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.26",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@sinclair/typebox": "0.26.8",
|
|
7
7
|
"lodash": "4.17.21",
|
|
8
8
|
"nanoid": "3.3.4",
|
|
9
|
-
"@activepieces/shared": "0.3.
|
|
10
|
-
"tslib": "2.
|
|
9
|
+
"@activepieces/shared": "0.3.42",
|
|
10
|
+
"tslib": "2.5.3"
|
|
11
11
|
},
|
|
12
12
|
"main": "./src/index.js",
|
|
13
13
|
"types": "./src/index.d.ts"
|
package/src/lib/piece.d.ts
CHANGED
|
@@ -2,12 +2,10 @@ import type { Trigger } from './trigger/trigger';
|
|
|
2
2
|
import { Action } from './action/action';
|
|
3
3
|
import { EventPayload, ParseEventResponse } from '@activepieces/shared';
|
|
4
4
|
import { PieceBase, PieceMetadata } from './piece-metadata';
|
|
5
|
-
export declare class Piece implements PieceBase {
|
|
6
|
-
readonly name: string;
|
|
5
|
+
export declare class Piece implements Omit<PieceBase, "version" | "name"> {
|
|
7
6
|
readonly displayName: string;
|
|
8
7
|
readonly logoUrl: string;
|
|
9
8
|
readonly authors: string[];
|
|
10
|
-
readonly version: string;
|
|
11
9
|
readonly events: {
|
|
12
10
|
parseAndReply: (ctx: {
|
|
13
11
|
payload: EventPayload;
|
|
@@ -23,7 +21,7 @@ export declare class Piece implements PieceBase {
|
|
|
23
21
|
readonly description: string;
|
|
24
22
|
private readonly _actions;
|
|
25
23
|
private readonly _triggers;
|
|
26
|
-
constructor(
|
|
24
|
+
constructor(displayName: string, logoUrl: string, authors: string[], events: {
|
|
27
25
|
parseAndReply: (ctx: {
|
|
28
26
|
payload: EventPayload;
|
|
29
27
|
}) => ParseEventResponse;
|
|
@@ -35,7 +33,9 @@ export declare class Piece implements PieceBase {
|
|
|
35
33
|
} | undefined, actions: Action[], triggers: Trigger[], minimumSupportedRelease?: string | undefined, maximumSupportedRelease?: string | undefined, description?: string);
|
|
36
34
|
getAction(actionName: string): Action | undefined;
|
|
37
35
|
getTrigger(triggerName: string): Trigger | undefined;
|
|
38
|
-
metadata(): PieceMetadata
|
|
36
|
+
metadata(): Omit<PieceMetadata, "name" | "version">;
|
|
37
|
+
actions(): Record<string, Action>;
|
|
38
|
+
triggers(): Record<string, Trigger>;
|
|
39
39
|
}
|
|
40
40
|
export declare const createPiece: (request: {
|
|
41
41
|
name: string;
|
package/src/lib/piece.js
CHANGED
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createPiece = exports.Piece = void 0;
|
|
4
4
|
class Piece {
|
|
5
|
-
constructor(
|
|
6
|
-
this.name = name;
|
|
5
|
+
constructor(displayName, logoUrl, authors, events, actions, triggers, minimumSupportedRelease, maximumSupportedRelease, description = '') {
|
|
7
6
|
this.displayName = displayName;
|
|
8
7
|
this.logoUrl = logoUrl;
|
|
9
8
|
this.authors = authors;
|
|
10
|
-
this.version = version;
|
|
11
9
|
this.events = events;
|
|
12
10
|
this.minimumSupportedRelease = minimumSupportedRelease;
|
|
13
11
|
this.maximumSupportedRelease = maximumSupportedRelease;
|
|
@@ -29,22 +27,26 @@ class Piece {
|
|
|
29
27
|
}
|
|
30
28
|
metadata() {
|
|
31
29
|
return {
|
|
32
|
-
name: this.name,
|
|
33
30
|
displayName: this.displayName,
|
|
34
31
|
logoUrl: this.logoUrl,
|
|
35
32
|
actions: this._actions,
|
|
36
33
|
triggers: this._triggers,
|
|
37
34
|
description: this.description,
|
|
38
|
-
version: this.version,
|
|
39
35
|
minimumSupportedRelease: this.minimumSupportedRelease,
|
|
40
36
|
maximumSupportedRelease: this.maximumSupportedRelease,
|
|
41
37
|
};
|
|
42
38
|
}
|
|
39
|
+
actions() {
|
|
40
|
+
return this._actions;
|
|
41
|
+
}
|
|
42
|
+
triggers() {
|
|
43
|
+
return this._triggers;
|
|
44
|
+
}
|
|
43
45
|
}
|
|
44
46
|
exports.Piece = Piece;
|
|
45
47
|
const createPiece = (request) => {
|
|
46
48
|
var _a;
|
|
47
|
-
return new Piece(request.
|
|
49
|
+
return new Piece(request.displayName, request.logoUrl, (_a = request.authors) !== null && _a !== void 0 ? _a : [], request.events, request.actions, request.triggers, request.minimumSupportedRelease, request.maximumSupportedRelease, request.description);
|
|
48
50
|
};
|
|
49
51
|
exports.createPiece = createPiece;
|
|
50
52
|
//# sourceMappingURL=piece.js.map
|
package/src/lib/piece.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"piece.js","sourceRoot":"","sources":["../../../../../../packages/pieces/framework/src/lib/piece.ts"],"names":[],"mappings":";;;AAKA,MAAa,KAAK;IAIhB,YACkB,
|
|
1
|
+
{"version":3,"file":"piece.js","sourceRoot":"","sources":["../../../../../../packages/pieces/framework/src/lib/piece.ts"],"names":[],"mappings":";;;AAKA,MAAa,KAAK;IAIhB,YACkB,WAAmB,EACnB,OAAe,EACf,OAAiB,EACjB,MAGH,EACb,OAAiB,EACjB,QAAmB,EACH,uBAAgC,EAChC,uBAAgC,EAChC,cAAsB,EAAE;QAXxB,gBAAW,GAAX,WAAW,CAAQ;QACnB,YAAO,GAAP,OAAO,CAAQ;QACf,YAAO,GAAP,OAAO,CAAU;QACjB,WAAM,GAAN,MAAM,CAGT;QAGG,4BAAuB,GAAvB,uBAAuB,CAAS;QAChC,4BAAuB,GAAvB,uBAAuB,CAAS;QAChC,gBAAW,GAAX,WAAW,CAAa;QAExC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,WAAW,CAChC,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAC/C,CAAC;QAEF,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,WAAW,CACjC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CACnD,CAAC;IACJ,CAAC;IAED,SAAS,CAAC,UAAkB;QAC1B,IAAI,CAAC,CAAC,UAAU,IAAI,IAAI,CAAC,QAAQ,CAAC,EAAE;YAClC,OAAO,SAAS,CAAC;SAClB;QACD,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,CAAC;IAED,UAAU,CAAC,WAAmB;QAC5B,IAAI,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,SAAS,CAAC,EAAE;YACpC,OAAO,SAAS,CAAC;SAClB;QACD,OAAO,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IAED,QAAQ;QACN,OAAO;YACL,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,OAAO,EAAE,IAAI,CAAC,QAAQ;YACtB,QAAQ,EAAE,IAAI,CAAC,SAAS;YACxB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,uBAAuB,EAAE,IAAI,CAAC,uBAAuB;YACrD,uBAAuB,EAAE,IAAI,CAAC,uBAAuB;SACtD,CAAC;IACJ,CAAC;IAED,OAAO;QACL,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;IAED,QAAQ;QACN,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;CACF;AA5DD,sBA4DC;AAEM,MAAM,WAAW,GAAG,CAAC,OAe3B,EAAS,EAAE;;IACV,OAAA,IAAI,KAAK,CACP,OAAO,CAAC,WAAW,EACnB,OAAO,CAAC,OAAO,EACf,MAAA,OAAO,CAAC,OAAO,mCAAI,EAAE,EACrB,OAAO,CAAC,MAAM,EACd,OAAO,CAAC,OAAO,EACf,OAAO,CAAC,QAAQ,EAChB,OAAO,CAAC,uBAAuB,EAC/B,OAAO,CAAC,uBAAuB,EAC/B,OAAO,CAAC,WAAW,CACpB,CAAA;CAAA,CAAC;AA1BS,QAAA,WAAW,eA0BpB"}
|
|
@@ -7,7 +7,7 @@ export declare type TPropertyValue<T, U extends PropertyType, REQUIRED extends b
|
|
|
7
7
|
valueSchema: T;
|
|
8
8
|
type: U;
|
|
9
9
|
required: REQUIRED;
|
|
10
|
-
defaultValue?: U extends PropertyType.ARRAY ? unknown[] : U extends PropertyType.JSON ? object : U extends PropertyType.CHECKBOX ? boolean : U extends PropertyType.LONG_TEXT ? string : U extends PropertyType.SHORT_TEXT ? string : U extends PropertyType.NUMBER ? number : U extends PropertyType.DROPDOWN ? unknown : U extends PropertyType.MULTI_SELECT_DROPDOWN ? unknown[] : U extends PropertyType.STATIC_MULTI_SELECT_DROPDOWN ? unknown[] : U extends PropertyType.STATIC_DROPDOWN ? unknown : U extends PropertyType.DATE_TIME ? string : unknown;
|
|
10
|
+
defaultValue?: U extends PropertyType.ARRAY ? unknown[] : U extends PropertyType.JSON ? object : U extends PropertyType.CHECKBOX ? boolean : U extends PropertyType.LONG_TEXT ? string : U extends PropertyType.SHORT_TEXT ? string : U extends PropertyType.NUMBER ? number : U extends PropertyType.DROPDOWN ? unknown : U extends PropertyType.MULTI_SELECT_DROPDOWN ? unknown[] : U extends PropertyType.STATIC_MULTI_SELECT_DROPDOWN ? unknown[] : U extends PropertyType.STATIC_DROPDOWN ? unknown : U extends PropertyType.DATE_TIME ? string : U extends PropertyType.FILE ? ApFile : unknown;
|
|
11
11
|
};
|
|
12
12
|
export declare type ShortTextProperty<R extends boolean> = BasePropertySchema & TPropertyValue<string, PropertyType.SHORT_TEXT, R>;
|
|
13
13
|
export declare type LongTextProperty<R extends boolean> = BasePropertySchema & TPropertyValue<string, PropertyType.LONG_TEXT, R>;
|
|
@@ -18,3 +18,9 @@ export declare type ArrayProperty<R extends boolean> = BasePropertySchema & TPro
|
|
|
18
18
|
export declare type ObjectProperty<R extends boolean> = BasePropertySchema & TPropertyValue<Record<string, unknown>, PropertyType.OBJECT, R>;
|
|
19
19
|
export declare type JsonProperty<R extends boolean> = BasePropertySchema & TPropertyValue<Record<string, unknown>, PropertyType.JSON, R>;
|
|
20
20
|
export declare type DateTimeProperty<R extends boolean> = BasePropertySchema & TPropertyValue<string, PropertyType.DATE_TIME, R>;
|
|
21
|
+
export declare type ApFile = {
|
|
22
|
+
filename?: string;
|
|
23
|
+
extension?: string;
|
|
24
|
+
base64: string;
|
|
25
|
+
};
|
|
26
|
+
export declare type FileProperty<R extends boolean> = BasePropertySchema & TPropertyValue<ApFile, PropertyType.FILE, R>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ArrayProperty, CheckboxProperty, DateTimeProperty, JsonProperty, LongTextProperty, NumberProperty, ObjectProperty, SecretTextProperty, ShortTextProperty } from "./base-prop";
|
|
1
|
+
import { ArrayProperty, CheckboxProperty, DateTimeProperty, FileProperty, JsonProperty, LongTextProperty, NumberProperty, ObjectProperty, SecretTextProperty, ShortTextProperty } from "./base-prop";
|
|
2
2
|
import { BasicAuthProperty } from "./basic-auth-prop";
|
|
3
3
|
import { CustomAuthProperty, CustomAuthProps } from "./custom-auth-prop";
|
|
4
4
|
import { DropdownProperty, MultiSelectDropdownProperty, StaticDropdownProperty, StaticMultiSelectDropdownProperty } from "./dropdown-prop";
|
|
@@ -21,9 +21,10 @@ export declare enum PropertyType {
|
|
|
21
21
|
STATIC_MULTI_SELECT_DROPDOWN = "STATIC_MULTI_SELECT_DROPDOWN",
|
|
22
22
|
DYNAMIC = "DYNAMIC",
|
|
23
23
|
CUSTOM_AUTH = "CUSTOM_AUTH",
|
|
24
|
-
DATE_TIME = "DATE_TIME"
|
|
24
|
+
DATE_TIME = "DATE_TIME",
|
|
25
|
+
FILE = "FILE"
|
|
25
26
|
}
|
|
26
|
-
export declare type PieceProperty = ShortTextProperty<boolean> | LongTextProperty<boolean> | OAuth2Property<boolean, OAuth2Props> | CheckboxProperty<boolean> | DropdownProperty<any, boolean> | StaticDropdownProperty<any, boolean> | NumberProperty<boolean> | SecretTextProperty<boolean> | BasicAuthProperty<boolean> | ArrayProperty<boolean> | ObjectProperty<boolean> | JsonProperty<boolean> | MultiSelectDropdownProperty<unknown, boolean> | StaticMultiSelectDropdownProperty<unknown, boolean> | DynamicProperties<boolean> | CustomAuthProperty<boolean, CustomAuthProps> | DateTimeProperty<boolean>;
|
|
27
|
+
export declare type PieceProperty = ShortTextProperty<boolean> | LongTextProperty<boolean> | OAuth2Property<boolean, OAuth2Props> | CheckboxProperty<boolean> | DropdownProperty<any, boolean> | StaticDropdownProperty<any, boolean> | NumberProperty<boolean> | SecretTextProperty<boolean> | BasicAuthProperty<boolean> | ArrayProperty<boolean> | ObjectProperty<boolean> | JsonProperty<boolean> | MultiSelectDropdownProperty<unknown, boolean> | StaticMultiSelectDropdownProperty<unknown, boolean> | DynamicProperties<boolean> | CustomAuthProperty<boolean, CustomAuthProps> | DateTimeProperty<boolean> | FileProperty<boolean>;
|
|
27
28
|
export interface PiecePropertyMap {
|
|
28
29
|
[name: string]: PieceProperty;
|
|
29
30
|
}
|
|
@@ -50,6 +51,7 @@ export declare const Property: {
|
|
|
50
51
|
DynamicProperties<R_14 extends boolean = boolean>(request: Properties<DynamicProperties<R_14>>): R_14 extends true ? DynamicProperties<true> : DynamicProperties<false>;
|
|
51
52
|
StaticMultiSelectDropdown<T_5, R_15 extends boolean = boolean>(request: Properties<StaticMultiSelectDropdownProperty<T_5, R_15>>): R_15 extends true ? StaticMultiSelectDropdownProperty<T_5, true> : StaticMultiSelectDropdownProperty<T_5, false>;
|
|
52
53
|
DateTime<R_16 extends boolean>(request: Properties<DateTimeProperty<R_16>>): R_16 extends true ? DateTimeProperty<true> : DateTimeProperty<false>;
|
|
54
|
+
File<R_17 extends boolean>(request: Properties<FileProperty<R_17>>): R_17 extends true ? FileProperty<true> : FileProperty<false>;
|
|
53
55
|
};
|
|
54
56
|
declare type Properties<T> = Omit<T, "valueSchema" | "type">;
|
|
55
57
|
export {};
|
|
@@ -20,6 +20,7 @@ var PropertyType;
|
|
|
20
20
|
PropertyType["DYNAMIC"] = "DYNAMIC";
|
|
21
21
|
PropertyType["CUSTOM_AUTH"] = "CUSTOM_AUTH";
|
|
22
22
|
PropertyType["DATE_TIME"] = "DATE_TIME";
|
|
23
|
+
PropertyType["FILE"] = "FILE";
|
|
23
24
|
})(PropertyType = exports.PropertyType || (exports.PropertyType = {}));
|
|
24
25
|
exports.Property = {
|
|
25
26
|
ShortText(request) {
|
|
@@ -73,5 +74,8 @@ exports.Property = {
|
|
|
73
74
|
DateTime(request) {
|
|
74
75
|
return Object.assign(Object.assign({}, request), { valueSchema: undefined, type: PropertyType.DATE_TIME });
|
|
75
76
|
},
|
|
77
|
+
File(request) {
|
|
78
|
+
return Object.assign(Object.assign({}, request), { valueSchema: undefined, type: PropertyType.FILE });
|
|
79
|
+
},
|
|
76
80
|
};
|
|
77
81
|
//# sourceMappingURL=property.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"property.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/framework/src/lib/property/property.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"property.js","sourceRoot":"","sources":["../../../../../../../packages/pieces/framework/src/lib/property/property.ts"],"names":[],"mappings":"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"}
|