@activepieces/piece-pylon 0.0.1 → 0.0.3
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 +15 -13
- package/src/i18n/de.json +18 -0
- package/src/i18n/es.json +18 -0
- package/src/i18n/fr.json +18 -0
- package/src/i18n/ja.json +18 -0
- package/src/i18n/nl.json +18 -0
- package/src/i18n/pt.json +18 -0
- package/src/i18n/ru.json +18 -0
- package/src/i18n/translation.json +18 -0
- package/src/i18n/vi.json +18 -0
- package/src/i18n/zh.json +18 -0
package/package.json
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-pylon",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@
|
|
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",
|
|
6
9
|
"@sinclair/typebox": "0.34.11",
|
|
7
|
-
"
|
|
10
|
+
"ai": "4.3.16",
|
|
11
|
+
"axios": "1.8.3",
|
|
8
12
|
"axios-retry": "4.4.1",
|
|
9
13
|
"deepmerge-ts": "7.1.0",
|
|
14
|
+
"fast-glob": "3.3.3",
|
|
10
15
|
"mime-types": "2.1.35",
|
|
11
16
|
"nanoid": "3.3.8",
|
|
12
|
-
"openai": "4.67.1",
|
|
13
|
-
"replicate": "0.34.1",
|
|
14
17
|
"semver": "7.6.0",
|
|
15
|
-
"zod": "3.
|
|
16
|
-
"@activepieces/pieces-common": "0.
|
|
17
|
-
"@activepieces/pieces-framework": "0.
|
|
18
|
-
"@activepieces/shared": "0.
|
|
19
|
-
"tslib": "
|
|
18
|
+
"zod": "3.25.76",
|
|
19
|
+
"@activepieces/pieces-common": "0.6.4",
|
|
20
|
+
"@activepieces/pieces-framework": "0.18.3",
|
|
21
|
+
"@activepieces/shared": "0.18.0",
|
|
22
|
+
"tslib": "2.8.1"
|
|
20
23
|
},
|
|
21
24
|
"overrides": {
|
|
22
|
-
"cross-spawn": "7.0.6",
|
|
23
25
|
"@tryfabric/martian": {
|
|
24
26
|
"@notionhq/client": "$@notionhq/client"
|
|
25
27
|
},
|
|
@@ -30,7 +32,7 @@
|
|
|
30
32
|
"resolutions": {
|
|
31
33
|
"rollup": "npm:@rollup/wasm-node"
|
|
32
34
|
},
|
|
35
|
+
"types": "./src/index.d.ts",
|
|
33
36
|
"main": "./src/index.js",
|
|
34
|
-
"type": "commonjs"
|
|
35
|
-
"types": "./src/index.d.ts"
|
|
37
|
+
"type": "commonjs"
|
|
36
38
|
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pylon",
|
|
3
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
5
|
+
"Method": "Methode",
|
|
6
|
+
"Headers": "Kopfzeilen",
|
|
7
|
+
"Query Parameters": "Abfrageparameter",
|
|
8
|
+
"Body": "Körper",
|
|
9
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
10
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
12
|
+
"GET": "ERHALTEN",
|
|
13
|
+
"POST": "POST",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "PUT",
|
|
16
|
+
"DELETE": "LÖSCHEN",
|
|
17
|
+
"HEAD": "HEAD"
|
|
18
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pilón",
|
|
3
|
+
"Custom API Call": "Llamada API personalizada",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
5
|
+
"Method": "Método",
|
|
6
|
+
"Headers": "Encabezados",
|
|
7
|
+
"Query Parameters": "Parámetros de consulta",
|
|
8
|
+
"Body": "Cuerpo",
|
|
9
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
10
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
12
|
+
"GET": "RECOGER",
|
|
13
|
+
"POST": "POST",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "PUT",
|
|
16
|
+
"DELETE": "BORRAR",
|
|
17
|
+
"HEAD": "LIMPIO"
|
|
18
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pylône",
|
|
3
|
+
"Custom API Call": "Appel API personnalisé",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
5
|
+
"Method": "Méthode",
|
|
6
|
+
"Headers": "En-têtes",
|
|
7
|
+
"Query Parameters": "Paramètres de requête",
|
|
8
|
+
"Body": "Corps",
|
|
9
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
10
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
12
|
+
"GET": "OBTENIR",
|
|
13
|
+
"POST": "POSTER",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "EFFACER",
|
|
16
|
+
"DELETE": "SUPPRIMER",
|
|
17
|
+
"HEAD": "TÊTE"
|
|
18
|
+
}
|
package/src/i18n/ja.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "パイロン",
|
|
3
|
+
"Custom API Call": "カスタムAPI通話",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
|
|
5
|
+
"Method": "方法",
|
|
6
|
+
"Headers": "ヘッダー",
|
|
7
|
+
"Query Parameters": "クエリパラメータ",
|
|
8
|
+
"Body": "本文",
|
|
9
|
+
"No Error on Failure": "失敗時にエラーはありません",
|
|
10
|
+
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
|
|
12
|
+
"GET": "取得",
|
|
13
|
+
"POST": "POST",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "PUT",
|
|
16
|
+
"DELETE": "削除",
|
|
17
|
+
"HEAD": "頭"
|
|
18
|
+
}
|
package/src/i18n/nl.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pylon",
|
|
3
|
+
"Custom API Call": "Custom API Call",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
|
|
5
|
+
"Method": "Methode",
|
|
6
|
+
"Headers": "Kopteksten",
|
|
7
|
+
"Query Parameters": "Query parameters",
|
|
8
|
+
"Body": "Lichaam",
|
|
9
|
+
"No Error on Failure": "Geen fout bij fout",
|
|
10
|
+
"Timeout (in seconds)": "Time-out (in seconden)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
|
|
12
|
+
"GET": "KRIJG",
|
|
13
|
+
"POST": "POSTE",
|
|
14
|
+
"PATCH": "BEKIJK",
|
|
15
|
+
"PUT": "PUT",
|
|
16
|
+
"DELETE": "VERWIJDEREN",
|
|
17
|
+
"HEAD": "HOOFD"
|
|
18
|
+
}
|
package/src/i18n/pt.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pilão",
|
|
3
|
+
"Custom API Call": "Chamada de API personalizada",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Faça uma chamada de API personalizada para um ponto de extremidade específico",
|
|
5
|
+
"Method": "Método",
|
|
6
|
+
"Headers": "Cabeçalhos",
|
|
7
|
+
"Query Parameters": "Parâmetros da consulta",
|
|
8
|
+
"Body": "Conteúdo",
|
|
9
|
+
"No Error on Failure": "Nenhum erro no Failure",
|
|
10
|
+
"Timeout (in seconds)": "Tempo limite (em segundos)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
|
|
12
|
+
"GET": "OBTER",
|
|
13
|
+
"POST": "POSTAR",
|
|
14
|
+
"PATCH": "COMPRAR",
|
|
15
|
+
"PUT": "COLOCAR",
|
|
16
|
+
"DELETE": "EXCLUIR",
|
|
17
|
+
"HEAD": "CABEÇA"
|
|
18
|
+
}
|
package/src/i18n/ru.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Пилон",
|
|
3
|
+
"Custom API Call": "Пользовательский вызов API",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Сделать пользовательский API вызов к определенной конечной точке",
|
|
5
|
+
"Method": "Метод",
|
|
6
|
+
"Headers": "Заголовки",
|
|
7
|
+
"Query Parameters": "Параметры запроса",
|
|
8
|
+
"Body": "Тело",
|
|
9
|
+
"No Error on Failure": "Нет ошибок при ошибке",
|
|
10
|
+
"Timeout (in seconds)": "Таймаут (в секундах)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Заголовки авторизации включаются автоматически из вашего соединения.",
|
|
12
|
+
"GET": "ПОЛУЧИТЬ",
|
|
13
|
+
"POST": "ПОСТ",
|
|
14
|
+
"PATCH": "ПАТЧ",
|
|
15
|
+
"PUT": "ПОКУПИТЬ",
|
|
16
|
+
"DELETE": "УДАЛИТЬ",
|
|
17
|
+
"HEAD": "HEAD"
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pylon",
|
|
3
|
+
"Custom API Call": "Custom API Call",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
5
|
+
"Method": "Method",
|
|
6
|
+
"Headers": "Headers",
|
|
7
|
+
"Query Parameters": "Query Parameters",
|
|
8
|
+
"Body": "Body",
|
|
9
|
+
"No Error on Failure": "No Error on Failure",
|
|
10
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
12
|
+
"GET": "GET",
|
|
13
|
+
"POST": "POST",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "PUT",
|
|
16
|
+
"DELETE": "DELETE",
|
|
17
|
+
"HEAD": "HEAD"
|
|
18
|
+
}
|
package/src/i18n/vi.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pylon",
|
|
3
|
+
"Custom API Call": "Custom API Call",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
5
|
+
"Method": "Method",
|
|
6
|
+
"Headers": "Headers",
|
|
7
|
+
"Query Parameters": "Query Parameters",
|
|
8
|
+
"Body": "Body",
|
|
9
|
+
"No Error on Failure": "No Error on Failure",
|
|
10
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
12
|
+
"GET": "GET",
|
|
13
|
+
"POST": "POST",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "PUT",
|
|
16
|
+
"DELETE": "DELETE",
|
|
17
|
+
"HEAD": "HEAD"
|
|
18
|
+
}
|
package/src/i18n/zh.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Pylon": "Pylon",
|
|
3
|
+
"Custom API Call": "自定义 API 呼叫",
|
|
4
|
+
"Make a custom API call to a specific endpoint": "将一个自定义 API 调用到一个特定的终点",
|
|
5
|
+
"Method": "方法",
|
|
6
|
+
"Headers": "信头",
|
|
7
|
+
"Query Parameters": "查询参数",
|
|
8
|
+
"Body": "正文内容",
|
|
9
|
+
"No Error on Failure": "失败时没有错误",
|
|
10
|
+
"Timeout (in seconds)": "超时(秒)",
|
|
11
|
+
"Authorization headers are injected automatically from your connection.": "授权头自动从您的连接中注入。",
|
|
12
|
+
"GET": "获取",
|
|
13
|
+
"POST": "帖子",
|
|
14
|
+
"PATCH": "PATCH",
|
|
15
|
+
"PUT": "弹出",
|
|
16
|
+
"DELETE": "删除",
|
|
17
|
+
"HEAD": "黑色"
|
|
18
|
+
}
|