@activepieces/piece-todos 0.0.9 → 0.0.11

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.9",
3
+ "version": "0.0.11",
4
4
  "dependencies": {
5
5
  "@sinclair/typebox": "0.34.11",
6
6
  "axios": "1.8.3",
@@ -13,7 +13,7 @@
13
13
  "zod": "3.25.76",
14
14
  "@activepieces/pieces-common": "0.7.0",
15
15
  "@activepieces/pieces-framework": "0.18.4",
16
- "@activepieces/shared": "0.19.0",
16
+ "@activepieces/shared": "0.20.0",
17
17
  "tslib": "2.8.1"
18
18
  },
19
19
  "overrides": {
package/src/i18n/fr.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Wait for Approval": "Attendre l'approbation",
6
6
  "Create Todo and Wait": "Créer une todo et attendre",
7
7
  "Creates a todo for a user, requiring them to respond or take action.": "Crée une todo pour un utilisateur, lui demandant de réagir ou de prendre des mesures.",
8
- "Pauses the flow and wait for the approval from the user": "Met en pause le flux et attend l'approbation de l'utilisateur",
8
+ "Pauses the flow and wait for the approval from the user": "Met le flow en pause et attend l'approbation de l'utilisateur",
9
9
  "Creates a todo for a user and wait for their response or take action.": "Crée une todo pour un utilisateur et attend sa réponse ou prend des mesures.",
10
10
  "Title": "Titre de la page",
11
11
  "Description": "Libellé",
package/src/i18n/zh.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
- "Todos": "待辦事項",
3
- "Create tasks for project members to take actions, useful for approvals, reviews, and manual actions performed by humans": "為專案成員創建任務以採取行動,這對於批准、審查和人工操作非常有用",
4
- "Create Todo": "創建待辦事項",
5
- "Wait for Approval": "等待批准",
6
- "Create Todo and Wait": "創建待辦事項並等待",
7
- "Creates a todo for a user, requiring them to respond or take action.": "為某用戶創建待辦事項,要求他們回應或採取行動。",
8
- "Pauses the flow and wait for the approval from the user": "暫停流程並等待用戶的批准",
9
- "Creates a todo for a user and wait for their response or take action.": "為某用戶創建待辦事項並等待他們的回應或行動。",
10
- "Title": "標題",
2
+ "Todos": "Todos",
3
+ "Create tasks for project members to take actions, useful for approvals, reviews, and manual actions performed by humans": "Create tasks for project members to take actions, useful for approvals, reviews, and manual actions performed by humans",
4
+ "Create Todo": "Create Todo",
5
+ "Wait for Approval": "Wait for Approval",
6
+ "Create Todo and Wait": "Create Todo and Wait",
7
+ "Creates a todo for a user, requiring them to respond or take action.": "Creates a todo for a user, requiring them to respond or take action.",
8
+ "Pauses the flow and wait for the approval from the user": "Pauses the flow and wait for the approval from the user",
9
+ "Creates a todo for a user and wait for their response or take action.": "Creates a todo for a user and wait for their response or take action.",
10
+ "Title": "标题",
11
11
  "Description": "描述",
12
- "Assignee": "受讓人",
13
- "Status Options": "狀態選項",
14
- "Task ID": "任務 ID",
15
- "These details will be displayed for the assignee. Add the full context so they can take proper action, You can also use markdown formatting.": "這些細節將顯示給受托人。添加完整的上下文以便他們能採取正確的行動。您還可以使用 markdown 格式。",
16
- "The ID of the task to wait for approval": "需要等待批准的任務ID"
12
+ "Assignee": "Assignee",
13
+ "Status Options": "Status Options",
14
+ "Task ID": "Task ID",
15
+ "These details will be displayed for the assignee. Add the full context so they can take proper action, You can also use markdown formatting.": "These details will be displayed for the assignee. Add the full context so they can take proper action, You can also use markdown formatting.",
16
+ "The ID of the task to wait for approval": "The ID of the task to wait for approval"
17
17
  }
@@ -73,22 +73,22 @@ export declare function sendTodoApproval(context: ApprovalParms, isTest: boolean
73
73
  displayName: string;
74
74
  settings: {
75
75
  triggerName?: string | undefined;
76
+ sampleData?: {
77
+ sampleDataFileId?: string | undefined;
78
+ sampleDataInputFileId?: string | undefined;
79
+ lastTestDate?: string | undefined;
80
+ } | undefined;
81
+ customLogoUrl?: string | undefined;
76
82
  pieceName: string;
77
83
  pieceVersion: string;
78
84
  input: {
79
85
  [x: string]: any;
80
86
  };
81
- inputUiInfo: {
82
- sampleDataFileId?: string | undefined;
83
- sampleDataInputFileId?: string | undefined;
84
- lastTestDate?: string | undefined;
85
- customizedInputs?: {
86
- [x: string]: unknown;
87
- } | undefined;
88
- schema?: {
89
- [x: string]: unknown;
90
- } | undefined;
91
- currentSelectedData?: unknown;
87
+ propertySettings: {
88
+ [x: string]: {
89
+ schema?: any;
90
+ type: import("dist/packages/shared/src/lib/flows").PropertyExecutionType;
91
+ };
92
92
  };
93
93
  };
94
94
  valid: boolean;