@activepieces/piece-todos 0.0.7 → 0.0.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@activepieces/piece-todos",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "dependencies": {
5
5
  "@ai-sdk/anthropic": "1.2.12",
6
6
  "@ai-sdk/google": "1.2.19",
@@ -16,9 +16,9 @@
16
16
  "nanoid": "3.3.8",
17
17
  "semver": "7.6.0",
18
18
  "zod": "3.25.76",
19
- "@activepieces/pieces-common": "0.6.0",
20
- "@activepieces/pieces-framework": "0.15.0",
21
- "@activepieces/shared": "0.17.2",
19
+ "@activepieces/pieces-common": "0.6.4",
20
+ "@activepieces/pieces-framework": "0.18.3",
21
+ "@activepieces/shared": "0.18.0",
22
22
  "tslib": "2.8.1"
23
23
  },
24
24
  "overrides": {
@@ -27,8 +27,7 @@
27
27
  },
28
28
  "vite": {
29
29
  "rollup": "npm:@rollup/wasm-node"
30
- },
31
- "stylus": "0.0.1-security"
30
+ }
32
31
  },
33
32
  "resolutions": {
34
33
  "rollup": "npm:@rollup/wasm-node"
@@ -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
- id: string;
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").TriggerType.EMPTY;
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").TriggerType.PIECE;
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;