@activepieces/piece-todos 0.0.7 → 0.0.9
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 +5 -11
- package/src/lib/utils/utils.d.ts +16 -16
package/package.json
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-todos",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@ai-sdk/anthropic": "1.2.12",
|
|
6
|
-
"@ai-sdk/google": "1.2.19",
|
|
7
|
-
"@ai-sdk/openai": "1.3.22",
|
|
8
|
-
"@ai-sdk/replicate": "0.2.8",
|
|
9
5
|
"@sinclair/typebox": "0.34.11",
|
|
10
|
-
"ai": "4.3.16",
|
|
11
6
|
"axios": "1.8.3",
|
|
12
7
|
"axios-retry": "4.4.1",
|
|
13
8
|
"deepmerge-ts": "7.1.0",
|
|
@@ -16,9 +11,9 @@
|
|
|
16
11
|
"nanoid": "3.3.8",
|
|
17
12
|
"semver": "7.6.0",
|
|
18
13
|
"zod": "3.25.76",
|
|
19
|
-
"@activepieces/pieces-common": "0.
|
|
20
|
-
"@activepieces/pieces-framework": "0.
|
|
21
|
-
"@activepieces/shared": "0.
|
|
14
|
+
"@activepieces/pieces-common": "0.7.0",
|
|
15
|
+
"@activepieces/pieces-framework": "0.18.4",
|
|
16
|
+
"@activepieces/shared": "0.19.0",
|
|
22
17
|
"tslib": "2.8.1"
|
|
23
18
|
},
|
|
24
19
|
"overrides": {
|
|
@@ -27,8 +22,7 @@
|
|
|
27
22
|
},
|
|
28
23
|
"vite": {
|
|
29
24
|
"rollup": "npm:@rollup/wasm-node"
|
|
30
|
-
}
|
|
31
|
-
"stylus": "0.0.1-security"
|
|
25
|
+
}
|
|
32
26
|
},
|
|
33
27
|
"resolutions": {
|
|
34
28
|
"rollup": "npm:@rollup/wasm-node"
|
package/src/lib/utils/utils.d.ts
CHANGED
|
@@ -38,43 +38,41 @@ export declare function sendTodoApproval(context: ApprovalParms, isTest: boolean
|
|
|
38
38
|
[x: string]: unknown;
|
|
39
39
|
} | null | undefined;
|
|
40
40
|
folderId?: string | null | undefined;
|
|
41
|
-
schedule?: {
|
|
42
|
-
failureCount?: number | undefined;
|
|
43
|
-
type: import("dist/packages/shared/src/lib/flows").ScheduleType;
|
|
44
|
-
cronExpression: string;
|
|
45
|
-
timezone: string;
|
|
46
|
-
} | null | undefined;
|
|
47
|
-
handshakeConfiguration?: {
|
|
48
|
-
paramName?: string | undefined;
|
|
49
|
-
strategy: import("dist/packages/shared/src/lib/flows").WebhookHandshakeStrategy;
|
|
50
|
-
} | null | undefined;
|
|
51
41
|
publishedVersionId?: string | null | undefined;
|
|
52
|
-
|
|
42
|
+
triggerSource?: {
|
|
43
|
+
handshakeConfiguration?: {
|
|
44
|
+
paramName?: string | undefined;
|
|
45
|
+
strategy: import("dist/packages/shared/src/lib/trigger").WebhookHandshakeStrategy;
|
|
46
|
+
} | null | undefined;
|
|
47
|
+
schedule?: {
|
|
48
|
+
type: import("dist/packages/shared/src/lib/trigger").TriggerSourceScheduleType.CRON_EXPRESSION;
|
|
49
|
+
cronExpression: string;
|
|
50
|
+
timezone: string;
|
|
51
|
+
} | null | undefined;
|
|
52
|
+
} | undefined;
|
|
53
53
|
version: {
|
|
54
54
|
updatedBy?: string | null | undefined;
|
|
55
55
|
schemaVersion?: string | null | undefined;
|
|
56
|
-
id: string;
|
|
57
56
|
flowId: string;
|
|
57
|
+
id: string;
|
|
58
58
|
created: string;
|
|
59
59
|
updated: string;
|
|
60
60
|
displayName: string;
|
|
61
61
|
valid: boolean;
|
|
62
62
|
trigger: {
|
|
63
63
|
nextAction?: any;
|
|
64
|
-
type: import("@activepieces/shared").
|
|
64
|
+
type: import("@activepieces/shared").FlowTriggerType.EMPTY;
|
|
65
65
|
name: string;
|
|
66
66
|
displayName: string;
|
|
67
67
|
settings: any;
|
|
68
68
|
valid: boolean;
|
|
69
69
|
} | {
|
|
70
70
|
nextAction?: any;
|
|
71
|
-
type: import("@activepieces/shared").
|
|
71
|
+
type: import("@activepieces/shared").FlowTriggerType.PIECE;
|
|
72
72
|
name: string;
|
|
73
73
|
displayName: string;
|
|
74
74
|
settings: {
|
|
75
75
|
triggerName?: string | undefined;
|
|
76
|
-
packageType: import("dist/packages/shared/src/lib/pieces").PackageType;
|
|
77
|
-
pieceType: import("dist/packages/shared/src/lib/pieces").PieceType;
|
|
78
76
|
pieceName: string;
|
|
79
77
|
pieceVersion: string;
|
|
80
78
|
input: {
|
|
@@ -95,10 +93,12 @@ export declare function sendTodoApproval(context: ApprovalParms, isTest: boolean
|
|
|
95
93
|
};
|
|
96
94
|
valid: boolean;
|
|
97
95
|
};
|
|
96
|
+
agentIds: string[];
|
|
98
97
|
state: import("@activepieces/shared").FlowVersionState;
|
|
99
98
|
connectionIds: string[];
|
|
100
99
|
};
|
|
101
100
|
projectId: string;
|
|
101
|
+
id: string;
|
|
102
102
|
created: string;
|
|
103
103
|
updated: string;
|
|
104
104
|
status: import("@activepieces/shared").FlowStatus;
|