@activepieces/piece-pipedrive 0.8.0 → 0.8.2
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 +6 -4
- package/src/i18n/de.json +7 -1
- package/src/i18n/es.json +8 -2
- package/src/i18n/fr.json +7 -1
- package/src/i18n/ja.json +9 -3
- package/src/i18n/nl.json +8 -2
- package/src/i18n/pt.json +8 -2
- package/src/i18n/translation.json +7 -1
- package/src/i18n/zh.json +7 -1
- package/src/lib/trigger/activity-matching-filter.d.ts +2 -0
- package/src/lib/trigger/deal-matching-filter.d.ts +3 -0
- package/src/lib/trigger/new-activity.d.ts +1 -1
- package/src/lib/trigger/new-deal.d.ts +1 -1
- package/src/lib/trigger/new-lead.d.ts +1 -1
- package/src/lib/trigger/new-note.d.ts +1 -1
- package/src/lib/trigger/new-organization.d.ts +1 -1
- package/src/lib/trigger/new-person.d.ts +1 -1
- package/src/lib/trigger/organization-matching-filter.d.ts +2 -0
- package/src/lib/trigger/person-matching-filter.d.ts +2 -0
- package/src/lib/trigger/updated-deal-stage.d.ts +2 -0
- package/src/lib/trigger/updated-deal.d.ts +4 -0
- package/src/lib/trigger/updated-organization.d.ts +1 -1
- package/src/lib/trigger/updated-person.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-pipedrive",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@opentelemetry/api": "1.9.0",
|
|
6
6
|
"@sinclair/typebox": "0.34.11",
|
|
7
|
+
"ai": "^6.0.0",
|
|
7
8
|
"axios": "1.13.1",
|
|
8
9
|
"axios-retry": "4.4.1",
|
|
9
10
|
"dayjs": "1.11.9",
|
|
10
11
|
"deepmerge-ts": "7.1.0",
|
|
11
12
|
"form-data": "4.0.4",
|
|
13
|
+
"i18next": "23.13.0",
|
|
12
14
|
"mime-types": "2.1.35",
|
|
13
15
|
"nanoid": "3.3.8",
|
|
14
16
|
"semver": "7.6.0",
|
|
15
17
|
"socket.io-client": "4.8.1",
|
|
16
18
|
"zod": "4.1.13",
|
|
17
|
-
"@activepieces/pieces-common": "0.11.
|
|
18
|
-
"@activepieces/pieces-framework": "0.
|
|
19
|
-
"@activepieces/shared": "0.
|
|
19
|
+
"@activepieces/pieces-common": "0.11.3",
|
|
20
|
+
"@activepieces/pieces-framework": "0.25.1",
|
|
21
|
+
"@activepieces/shared": "0.34.0",
|
|
20
22
|
"tslib": "2.6.2"
|
|
21
23
|
},
|
|
22
24
|
"resolutions": {
|
package/src/i18n/de.json
CHANGED
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Erstellt eine neue Person.",
|
|
47
47
|
"Updates an existing person.": "Aktualisiert eine existierende Person.",
|
|
48
48
|
"Creates a new product.": "Erstellt ein neues Produkt.",
|
|
49
|
+
"Updates an existing product.": "Aktualisiert ein existierendes Produkt.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Findet mehrere Angebote im Zusammenhang mit einer bestimmten Person.",
|
|
50
51
|
"Finds a product by name ": "Findet ein Produkt nach Namen ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Findet ein Produkt oder ein Produkt nach Namen oder Produktcode.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "Methode",
|
|
133
134
|
"Headers": "Kopfzeilen",
|
|
134
135
|
"Query Parameters": "Abfrageparameter",
|
|
136
|
+
"Body Type": "Körpertyp",
|
|
135
137
|
"Body": "Körper",
|
|
136
138
|
"Response is Binary ?": "Antwort ist binär?",
|
|
137
139
|
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
138
140
|
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
141
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
139
142
|
"Type of object to add the follower to.": "Typ des Objekts, zu dem der Follower hinzugefügt werden soll.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID des Objekts, dem der Follower hinzugefügt werden soll.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "Sie können \"Deal finden\"-Aktion verwenden, um die Deal-ID abzurufen.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "Die Währung des Leadwertes (z.B. \"USD\", \"EUR\").",
|
|
151
154
|
"Marketing opt-in status": "Marketing-Opt-in-Status",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
154
157
|
"Deal": "Deal",
|
|
155
158
|
"Person": "Person",
|
|
156
159
|
"Organization": "Organisation",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "PUT",
|
|
183
186
|
"DELETE": "LÖSCHEN",
|
|
184
187
|
"HEAD": "HEAD",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "Formulardaten",
|
|
190
|
+
"Raw": "Rohe",
|
|
185
191
|
"New Person": "Neue Person",
|
|
186
192
|
"New Deal": "Neuer Deal",
|
|
187
193
|
"New Activity": "Neue Aktivität",
|
package/src/i18n/es.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"Create Person": "Crear Persona",
|
|
18
18
|
"Update Person": "Actualizar Persona",
|
|
19
19
|
"Create Product": "Crear Producto",
|
|
20
|
-
"Update Product": "
|
|
20
|
+
"Update Product": "Actualizar Producto",
|
|
21
21
|
"Find Deals Associated With Person": "Encuentra ofertas asociadas a la persona",
|
|
22
22
|
"Find Product": "Buscar producto",
|
|
23
23
|
"Find Products": "Buscar productos",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Crea una nueva persona.",
|
|
47
47
|
"Updates an existing person.": "Actualiza a una persona existente.",
|
|
48
48
|
"Creates a new product.": "Crea un nuevo producto.",
|
|
49
|
+
"Updates an existing product.": "Actualiza un producto existente.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Encuentra múltiples ofertas relacionadas con una persona específica.",
|
|
50
51
|
"Finds a product by name ": "Encuentra un producto por nombre ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Encuentra un producto o productos por nombre o código de producto.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "Método",
|
|
133
134
|
"Headers": "Encabezados",
|
|
134
135
|
"Query Parameters": "Parámetros de consulta",
|
|
136
|
+
"Body Type": "Tipo de cuerpo",
|
|
135
137
|
"Body": "Cuerpo",
|
|
136
138
|
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
137
139
|
"No Error on Failure": "No hay ningún error en fallo",
|
|
138
140
|
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
141
|
+
"Follow redirects": "Seguir redirecciones",
|
|
139
142
|
"Type of object to add the follower to.": "Tipo de objeto al que agregar el seguidor.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID del objeto al que agregar el seguidor.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "Puedes usar la acción Buscar Oferta para recuperar el ID de la operación.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "La moneda del valor inicial (por ej., \"USD\", \"Text\").",
|
|
151
154
|
"Marketing opt-in status": "Estado de marketing opt-in",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
154
157
|
"Deal": "Oferta",
|
|
155
158
|
"Person": "Persona",
|
|
156
159
|
"Organization": "Organización",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "PUT",
|
|
183
186
|
"DELETE": "BORRAR",
|
|
184
187
|
"HEAD": "LIMPIO",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "Datos de Formulario",
|
|
190
|
+
"Raw": "Rápido",
|
|
185
191
|
"New Person": "Nueva persona",
|
|
186
192
|
"New Deal": "Nueva oferta",
|
|
187
193
|
"New Activity": "Nueva actividad",
|
package/src/i18n/fr.json
CHANGED
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Crée une nouvelle personne.",
|
|
47
47
|
"Updates an existing person.": "Met à jour une personne existante.",
|
|
48
48
|
"Creates a new product.": "Crée un nouveau produit.",
|
|
49
|
+
"Updates an existing product.": "Met à jour un produit existant.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Trouve plusieurs affaires liées à une personne spécifique.",
|
|
50
51
|
"Finds a product by name ": "Trouve un produit par nom ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Trouve un produit ou des produits par nom ou code produit.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "Méthode",
|
|
133
134
|
"Headers": "En-têtes",
|
|
134
135
|
"Query Parameters": "Paramètres de requête",
|
|
136
|
+
"Body Type": "Body Type",
|
|
135
137
|
"Body": "Corps",
|
|
136
138
|
"Response is Binary ?": "La réponse est Binaire ?",
|
|
137
139
|
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
138
140
|
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
141
|
+
"Follow redirects": "Suivre les redirections",
|
|
139
142
|
"Type of object to add the follower to.": "Type d'objet auquel ajouter le suiveur.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID de l'objet auquel ajouter le suiveur.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "Vous pouvez utiliser l'action Trouver une offre pour récupérer l'ID de la transaction.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "La devise de la valeur principale (par exemple, \"USD\", \"EUR\").",
|
|
151
154
|
"Marketing opt-in status": "Statut de l'opt-in marketing",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
154
157
|
"Deal": "Affaire",
|
|
155
158
|
"Person": "Personne",
|
|
156
159
|
"Organization": "Organisation",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "EFFACER",
|
|
183
186
|
"DELETE": "SUPPRIMER",
|
|
184
187
|
"HEAD": "TÊTE",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "Données du formulaire",
|
|
190
|
+
"Raw": "Brut",
|
|
185
191
|
"New Person": "Nouvelle Personne",
|
|
186
192
|
"New Deal": "Nouvelle offre",
|
|
187
193
|
"New Activity": "Nouvelle activité",
|
package/src/i18n/ja.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"Create Person": "ユーザーを作成",
|
|
18
18
|
"Update Person": "担当者を更新",
|
|
19
19
|
"Create Product": "商品を作成",
|
|
20
|
-
"Update Product": "
|
|
20
|
+
"Update Product": "商品を更新",
|
|
21
21
|
"Find Deals Associated With Person": "関連付けられた取引を探す",
|
|
22
22
|
"Find Product": "商品を検索",
|
|
23
23
|
"Find Products": "商品を探す",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"Find Deal": "取引を探す",
|
|
29
29
|
"Find Activity": "アクティビティを検索",
|
|
30
30
|
"Find User": "ユーザーを検索",
|
|
31
|
-
"Custom API Call": "カスタムAPI
|
|
31
|
+
"Custom API Call": "カスタムAPI呼び出し",
|
|
32
32
|
"Adds a follower to a deal, person, organization or product.": "取引、人、組織、または製品にフォロワーを追加します。",
|
|
33
33
|
"Finds a note by ID.": "IDでノートを検索します。",
|
|
34
34
|
"Creates a new note.": "新しいノートを作成します。",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "新しいユーザーを作成します。",
|
|
47
47
|
"Updates an existing person.": "既存のユーザーを更新します。",
|
|
48
48
|
"Creates a new product.": "新しい商品を作成します。",
|
|
49
|
+
"Updates an existing product.": "既存の製品を更新します。",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "特定の人に関連する複数の取引を検索します。",
|
|
50
51
|
"Finds a product by name ": "名前で製品を検索 ",
|
|
51
52
|
"Finds a product or products by name or product code.": "名前または製品コードで製品または製品を検索します。",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "方法",
|
|
133
134
|
"Headers": "ヘッダー",
|
|
134
135
|
"Query Parameters": "クエリパラメータ",
|
|
136
|
+
"Body Type": "ボディタイプ",
|
|
135
137
|
"Body": "本文",
|
|
136
138
|
"Response is Binary ?": "応答はバイナリですか?",
|
|
137
139
|
"No Error on Failure": "失敗時にエラーはありません",
|
|
138
140
|
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
141
|
+
"Follow redirects": "リダイレクトをフォローする",
|
|
139
142
|
"Type of object to add the follower to.": "フォロワーを追加するオブジェクトのタイプ。",
|
|
140
143
|
"ID of the object to add the follower to.": "フォロワーを追加するオブジェクトのID。",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "format@@0アクションを使用して、ディールIDを取得できます。",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "リード値の通貨(例:\"USD\"、\"EUR\")。",
|
|
151
154
|
"Marketing opt-in status": "マーケティングオプトインのステータス",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
|
|
154
157
|
"Deal": "取引",
|
|
155
158
|
"Person": "人",
|
|
156
159
|
"Organization": "組織",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "PUT",
|
|
183
186
|
"DELETE": "削除",
|
|
184
187
|
"HEAD": "頭",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "フォームデータ",
|
|
190
|
+
"Raw": "Raw",
|
|
185
191
|
"New Person": "新しい人",
|
|
186
192
|
"New Deal": "新しい取引",
|
|
187
193
|
"New Activity": "新しいアクティビティ",
|
package/src/i18n/nl.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"Create Person": "Maak persoon aan",
|
|
18
18
|
"Update Person": "Update Persoon",
|
|
19
19
|
"Create Product": "Product aanmaken",
|
|
20
|
-
"Update Product": "
|
|
20
|
+
"Update Product": "Product bijwerken",
|
|
21
21
|
"Find Deals Associated With Person": "Zoek aanbiedingen voor persoon",
|
|
22
22
|
"Find Product": "Zoek product",
|
|
23
23
|
"Find Products": "Producten zoeken",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Maakt een nieuw persoon.",
|
|
47
47
|
"Updates an existing person.": "Een bestaande persoon bijwerken.",
|
|
48
48
|
"Creates a new product.": "Maakt een nieuw product aan.",
|
|
49
|
+
"Updates an existing product.": "Werkt een bestaand product bij.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Vindt meerdere deals gerelateerd aan een specifieke persoon.",
|
|
50
51
|
"Finds a product by name ": "Gevonden product op naam ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Vindt een product of product op naam of product code.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "Methode",
|
|
133
134
|
"Headers": "Kopteksten",
|
|
134
135
|
"Query Parameters": "Query parameters",
|
|
136
|
+
"Body Type": "Type lichaam",
|
|
135
137
|
"Body": "Lichaam",
|
|
136
138
|
"Response is Binary ?": "Antwoord is binair?",
|
|
137
139
|
"No Error on Failure": "Geen fout bij fout",
|
|
138
140
|
"Timeout (in seconds)": "Time-out (in seconden)",
|
|
141
|
+
"Follow redirects": "Volg omleidingen",
|
|
139
142
|
"Type of object to add the follower to.": "Type object waar de volger aan toe te voegen.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID van het object om de volger aan toe te voegen.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "U kunt \"Zoek Deal action gebruiken\" om transactie-ID op te halen.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "De valuta van de lead waarde (bijv. \"USD\", \"EUR\").",
|
|
151
154
|
"Marketing opt-in status": "Marketing opt-in status",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
|
|
154
157
|
"Deal": "Koopjes",
|
|
155
158
|
"Person": "Persoon",
|
|
156
159
|
"Organization": "Rekening",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "PUT",
|
|
183
186
|
"DELETE": "VERWIJDEREN",
|
|
184
187
|
"HEAD": "HOOFD",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "Formulieren gegevens",
|
|
190
|
+
"Raw": "Onbewerkte",
|
|
185
191
|
"New Person": "Nieuw persoon",
|
|
186
192
|
"New Deal": "Nieuwe deal",
|
|
187
193
|
"New Activity": "Nieuwe activiteit",
|
package/src/i18n/pt.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"Create Person": "Criar Pessoa",
|
|
18
18
|
"Update Person": "Atualizar pessoa",
|
|
19
19
|
"Create Product": "Criar Produto",
|
|
20
|
-
"Update Product": "Atualização
|
|
20
|
+
"Update Product": "Atualização de Produto",
|
|
21
21
|
"Find Deals Associated With Person": "Encontrar ofertas associadas com pessoas",
|
|
22
22
|
"Find Product": "Encontrar produto",
|
|
23
23
|
"Find Products": "Encontrar produtos",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Cria uma nova pessoa.",
|
|
47
47
|
"Updates an existing person.": "Atualiza uma pessoa existente.",
|
|
48
48
|
"Creates a new product.": "Cria um novo produto.",
|
|
49
|
+
"Updates an existing product.": "Atualiza um produto existente.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Encontra várias ofertas relacionadas a uma pessoa específica.",
|
|
50
51
|
"Finds a product by name ": "Localiza um produto por nome ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Encontra um produto ou produto por nome ou código do produto.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "Método",
|
|
133
134
|
"Headers": "Cabeçalhos",
|
|
134
135
|
"Query Parameters": "Parâmetros da consulta",
|
|
136
|
+
"Body Type": "Tipo de Corpo",
|
|
135
137
|
"Body": "Conteúdo",
|
|
136
138
|
"Response is Binary ?": "A resposta é binária ?",
|
|
137
139
|
"No Error on Failure": "Nenhum erro no Failure",
|
|
138
140
|
"Timeout (in seconds)": "Tempo limite (em segundos)",
|
|
141
|
+
"Follow redirects": "Seguir redirecionamentos",
|
|
139
142
|
"Type of object to add the follower to.": "Tipo de objeto ao qual adicionar o seguidor.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID do objeto ao qual adicionar o seguidor.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "Você pode usar a ação de Encontrar Oferta para recuperar o ID da oferta.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "A moeda do valor do lead (por exemplo, \"USD\", \"EUR\").",
|
|
151
154
|
"Marketing opt-in status": "Status do opt-in para marketing",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
|
|
154
157
|
"Deal": "Negócio",
|
|
155
158
|
"Person": "Pessoa",
|
|
156
159
|
"Organization": "Cliente",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "COLOCAR",
|
|
183
186
|
"DELETE": "EXCLUIR",
|
|
184
187
|
"HEAD": "CABEÇA",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "Dados de Formulário",
|
|
190
|
+
"Raw": "RAW",
|
|
185
191
|
"New Person": "Nova Pessoa",
|
|
186
192
|
"New Deal": "Nova Oferta",
|
|
187
193
|
"New Activity": "Nova atividade",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Creates a new person.",
|
|
47
47
|
"Updates an existing person.": "Updates an existing person.",
|
|
48
48
|
"Creates a new product.": "Creates a new product.",
|
|
49
|
+
"Updates an existing product.": "Updates an existing product.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Finds multiple deals related to a specific person.",
|
|
50
51
|
"Finds a product by name ": "Finds a product by name ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Finds a product or products by name or product code.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "Method",
|
|
133
134
|
"Headers": "Headers",
|
|
134
135
|
"Query Parameters": "Query Parameters",
|
|
136
|
+
"Body Type": "Body Type",
|
|
135
137
|
"Body": "Body",
|
|
136
138
|
"Response is Binary ?": "Response is Binary ?",
|
|
137
139
|
"No Error on Failure": "No Error on Failure",
|
|
138
140
|
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
141
|
+
"Follow redirects": "Follow redirects",
|
|
139
142
|
"Type of object to add the follower to.": "Type of object to add the follower to.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID of the object to add the follower to.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "You can use Find Deal action to retrieve deal ID.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "The currency of the lead value (e.g., \"USD\", \"EUR\").",
|
|
151
154
|
"Marketing opt-in status": "Marketing opt-in status",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
|
|
154
157
|
"Deal": "Deal",
|
|
155
158
|
"Person": "Person",
|
|
156
159
|
"Organization": "Organization",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "PUT",
|
|
183
186
|
"DELETE": "DELETE",
|
|
184
187
|
"HEAD": "HEAD",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "Form Data",
|
|
190
|
+
"Raw": "Raw",
|
|
185
191
|
"New Person": "New Person",
|
|
186
192
|
"New Deal": "New Deal",
|
|
187
193
|
"New Activity": "New Activity",
|
package/src/i18n/zh.json
CHANGED
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"Creates a new person.": "Creates a new person.",
|
|
47
47
|
"Updates an existing person.": "Updates an existing person.",
|
|
48
48
|
"Creates a new product.": "Creates a new product.",
|
|
49
|
+
"Updates an existing product.": "Updates an existing product.",
|
|
49
50
|
"Finds multiple deals related to a specific person.": "Finds multiple deals related to a specific person.",
|
|
50
51
|
"Finds a product by name ": "Finds a product by name ",
|
|
51
52
|
"Finds a product or products by name or product code.": "Finds a product or products by name or product code.",
|
|
@@ -132,10 +133,12 @@
|
|
|
132
133
|
"Method": "方法",
|
|
133
134
|
"Headers": "信头",
|
|
134
135
|
"Query Parameters": "查询参数",
|
|
136
|
+
"Body Type": "Body Type",
|
|
135
137
|
"Body": "正文内容",
|
|
136
138
|
"Response is Binary ?": "Response is Binary ?",
|
|
137
139
|
"No Error on Failure": "失败时没有错误",
|
|
138
140
|
"Timeout (in seconds)": "超时(秒)",
|
|
141
|
+
"Follow redirects": "Follow redirects",
|
|
139
142
|
"Type of object to add the follower to.": "Type of object to add the follower to.",
|
|
140
143
|
"ID of the object to add the follower to.": "ID of the object to add the follower to.",
|
|
141
144
|
"You can use Find Deal action to retrieve deal ID.": "You can use Find Deal action to retrieve deal ID.",
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "The currency of the lead value (e.g., \"USD\", \"EUR\").",
|
|
151
154
|
"Marketing opt-in status": "Marketing opt-in status",
|
|
152
155
|
"Authorization headers are injected automatically from your connection.": "授权头自动从您的连接中注入。",
|
|
153
|
-
"Enable for files like PDFs, images, etc
|
|
156
|
+
"Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
|
|
154
157
|
"Deal": "Deal",
|
|
155
158
|
"Person": "Person",
|
|
156
159
|
"Organization": "Organization",
|
|
@@ -182,6 +185,9 @@
|
|
|
182
185
|
"PUT": "弹出",
|
|
183
186
|
"DELETE": "删除",
|
|
184
187
|
"HEAD": "黑色",
|
|
188
|
+
"JSON": "JSON",
|
|
189
|
+
"Form Data": "表单数据",
|
|
190
|
+
"Raw": "原始文件",
|
|
185
191
|
"New Person": "New Person",
|
|
186
192
|
"New Deal": "New Deal",
|
|
187
193
|
"New Activity": "New Activity",
|
|
@@ -3,6 +3,8 @@ export declare const activityMatchingFilterTrigger: import("@activepieces/pieces
|
|
|
3
3
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
4
4
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
5
5
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
|
+
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
8
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
9
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
10
|
}>;
|
|
@@ -5,6 +5,9 @@ export declare const dealMatchingFilterTrigger: import("@activepieces/pieces-fra
|
|
|
5
5
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
6
6
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
7
7
|
status: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
8
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
9
|
+
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
10
|
+
status: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
8
11
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
9
12
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
10
13
|
status: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const newActivity: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const newActivity: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const newDeal: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const newDeal: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const newLeadTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const newLeadTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const newNoteTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const newNoteTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const newOrganizationTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const newOrganizationTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const newPerson: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const newPerson: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -3,6 +3,8 @@ export declare const organizationMatchingFilterTrigger: import("@activepieces/pi
|
|
|
3
3
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
4
4
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
5
5
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
|
+
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
8
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
9
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
10
|
}>;
|
|
@@ -3,6 +3,8 @@ export declare const personMatchingFilterTrigger: import("@activepieces/pieces-f
|
|
|
3
3
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
4
4
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
5
5
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
|
+
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
8
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
9
|
filterId: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>> | import("@activepieces/pieces-framework").DropdownProperty<number, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
10
|
}>;
|
|
@@ -3,6 +3,8 @@ export declare const updatedDealStageTrigger: import("@activepieces/pieces-frame
|
|
|
3
3
|
stage_id: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
4
4
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
5
5
|
stage_id: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
|
+
stage_id: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
8
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
9
|
stage_id: import("@activepieces/pieces-framework").DropdownProperty<number, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
10
|
}>;
|
|
@@ -7,6 +7,10 @@ export declare const updatedDeal: import("@activepieces/pieces-framework").ITrig
|
|
|
7
7
|
filter_by: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
8
8
|
filter_by_field_value: import("@activepieces/pieces-framework").DynamicProperties<false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
9
9
|
field_to_watch: import("@activepieces/pieces-framework").DropdownProperty<string, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
10
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
11
|
+
filter_by: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
12
|
+
filter_by_field_value: import("@activepieces/pieces-framework").DynamicProperties<false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
13
|
+
field_to_watch: import("@activepieces/pieces-framework").DropdownProperty<string, false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
10
14
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
11
15
|
filter_by: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
12
16
|
filter_by_field_value: import("@activepieces/pieces-framework").DynamicProperties<false, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const updatedOrganizationTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const updatedOrganizationTrigger: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
-
export declare const updatedPerson: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|
|
2
|
+
export declare const updatedPerson: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {}>;
|