@activepieces/piece-sessions-us 0.1.0 → 0.1.1
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 +7 -1
- package/src/i18n/fr.json +7 -1
- package/src/i18n/ja.json +7 -1
- package/src/i18n/nl.json +7 -1
- package/src/i18n/pt.json +7 -1
- package/src/i18n/translation.json +7 -1
- package/src/i18n/zh.json +7 -1
- package/src/lib/common/index.d.ts +2 -0
- package/src/lib/triggers/booking-created.d.ts +2 -0
- package/src/lib/triggers/booking-ended.d.ts +2 -0
- package/src/lib/triggers/booking-started.d.ts +2 -0
- package/src/lib/triggers/event-created.d.ts +2 -0
- package/src/lib/triggers/event-ended.d.ts +2 -0
- package/src/lib/triggers/event-new-registration.d.ts +2 -0
- package/src/lib/triggers/event-published.d.ts +2 -0
- package/src/lib/triggers/event-started.d.ts +2 -0
- package/src/lib/triggers/session-created.d.ts +2 -0
- package/src/lib/triggers/session-ended.d.ts +2 -0
- package/src/lib/triggers/session-started.d.ts +2 -0
- package/src/lib/triggers/takeaway-ready.d.ts +2 -0
- package/src/lib/triggers/transcript-ready.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-sessions-us",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@sinclair/typebox": "0.34.11",
|
|
6
|
+
"ai": "^6.0.0",
|
|
6
7
|
"axios": "1.13.1",
|
|
7
8
|
"axios-retry": "4.4.1",
|
|
8
9
|
"deepmerge-ts": "7.1.0",
|
|
9
10
|
"form-data": "4.0.4",
|
|
11
|
+
"i18next": "23.13.0",
|
|
10
12
|
"mime-types": "2.1.35",
|
|
11
13
|
"nanoid": "3.3.8",
|
|
12
14
|
"semver": "7.6.0",
|
|
13
15
|
"socket.io-client": "4.8.1",
|
|
14
16
|
"zod": "4.1.13",
|
|
15
|
-
"@activepieces/pieces-common": "0.11.
|
|
16
|
-
"@activepieces/pieces-framework": "0.
|
|
17
|
-
"@activepieces/shared": "0.
|
|
17
|
+
"@activepieces/pieces-common": "0.11.2",
|
|
18
|
+
"@activepieces/pieces-framework": "0.24.0",
|
|
19
|
+
"@activepieces/shared": "0.32.0",
|
|
18
20
|
"tslib": "2.6.2"
|
|
19
21
|
},
|
|
20
22
|
"resolutions": {
|
package/src/i18n/de.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "Methode",
|
|
18
18
|
"Headers": "Kopfzeilen",
|
|
19
19
|
"Query Parameters": "Abfrageparameter",
|
|
20
|
+
"Body Type": "Körpertyp",
|
|
20
21
|
"Body": "Körper",
|
|
21
22
|
"Response is Binary ?": "Antwort ist binär?",
|
|
22
23
|
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
23
24
|
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
25
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
24
26
|
"The name of the session": "Der Name der Sitzungsperiode",
|
|
25
27
|
"Select a date and time": "Datum und Uhrzeit auswählen",
|
|
26
28
|
"The timezone which the session will take place.": "Die Zeitzone, in der die Sitzung stattfinden wird.",
|
|
27
29
|
"The name of the event": "Der Name des Ereignisses",
|
|
28
30
|
"The event you want to publish.": "Das Ereignis, das Sie veröffentlichen möchten.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
31
33
|
"GET": "ERHALTEN",
|
|
32
34
|
"POST": "POST",
|
|
33
35
|
"PATCH": "PATCH",
|
|
34
36
|
"PUT": "PUT",
|
|
35
37
|
"DELETE": "LÖSCHEN",
|
|
36
38
|
"HEAD": "HEAD",
|
|
39
|
+
"None": "Keine",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "Formulardaten",
|
|
42
|
+
"Raw": "Rohe",
|
|
37
43
|
"Booking Created": "Buchung erstellt",
|
|
38
44
|
"Booking Started": "Buchung gestartet",
|
|
39
45
|
"Booking Ended": "Buchung beendet",
|
package/src/i18n/es.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "Método",
|
|
18
18
|
"Headers": "Encabezados",
|
|
19
19
|
"Query Parameters": "Parámetros de consulta",
|
|
20
|
+
"Body Type": "Tipo de cuerpo",
|
|
20
21
|
"Body": "Cuerpo",
|
|
21
22
|
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
22
23
|
"No Error on Failure": "No hay ningún error en fallo",
|
|
23
24
|
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
25
|
+
"Follow redirects": "Seguir redirecciones",
|
|
24
26
|
"The name of the session": "El nombre de la sesión",
|
|
25
27
|
"Select a date and time": "Seleccione una fecha y hora",
|
|
26
28
|
"The timezone which the session will take place.": "Zona horaria que tendrá lugar la sesión.",
|
|
27
29
|
"The name of the event": "El nombre del evento",
|
|
28
30
|
"The event you want to publish.": "El evento que desea publicar.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
31
33
|
"GET": "RECOGER",
|
|
32
34
|
"POST": "POST",
|
|
33
35
|
"PATCH": "PATCH",
|
|
34
36
|
"PUT": "PUT",
|
|
35
37
|
"DELETE": "BORRAR",
|
|
36
38
|
"HEAD": "LIMPIO",
|
|
39
|
+
"None": "Ninguna",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "Datos de Formulario",
|
|
42
|
+
"Raw": "Rápido",
|
|
37
43
|
"Booking Created": "Reserva creada",
|
|
38
44
|
"Booking Started": "Reserva iniciada",
|
|
39
45
|
"Booking Ended": "Reserva finalizada",
|
package/src/i18n/fr.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "Méthode",
|
|
18
18
|
"Headers": "En-têtes",
|
|
19
19
|
"Query Parameters": "Paramètres de requête",
|
|
20
|
+
"Body Type": "Body Type",
|
|
20
21
|
"Body": "Corps",
|
|
21
22
|
"Response is Binary ?": "La réponse est Binaire ?",
|
|
22
23
|
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
23
24
|
"Timeout (in seconds)": "Délai d'expiration (en secondes)",
|
|
25
|
+
"Follow redirects": "Suivre les redirections",
|
|
24
26
|
"The name of the session": "Le nom de la session",
|
|
25
27
|
"Select a date and time": "Sélectionnez une date et une heure",
|
|
26
28
|
"The timezone which the session will take place.": "Le fuseau horaire de la session aura lieu.",
|
|
27
29
|
"The name of the event": "Le nom de l'événement",
|
|
28
30
|
"The event you want to publish.": "L'événement que vous voulez publier.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
31
33
|
"GET": "GET",
|
|
32
34
|
"POST": "POST",
|
|
33
35
|
"PATCH": "PATCH",
|
|
34
36
|
"PUT": "PUT",
|
|
35
37
|
"DELETE": "DELETE",
|
|
36
38
|
"HEAD": "HEAD",
|
|
39
|
+
"None": "Aucun",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "Données du formulaire",
|
|
42
|
+
"Raw": "Brut",
|
|
37
43
|
"Booking Created": "Réservation créée",
|
|
38
44
|
"Booking Started": "Réservation commencée",
|
|
39
45
|
"Booking Ended": "Réservation terminée",
|
package/src/i18n/ja.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "方法",
|
|
18
18
|
"Headers": "ヘッダー",
|
|
19
19
|
"Query Parameters": "クエリパラメータ",
|
|
20
|
+
"Body Type": "ボディタイプ",
|
|
20
21
|
"Body": "本文",
|
|
21
22
|
"Response is Binary ?": "応答はバイナリですか?",
|
|
22
23
|
"No Error on Failure": "失敗時にエラーはありません",
|
|
23
24
|
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
25
|
+
"Follow redirects": "リダイレクトをフォローする",
|
|
24
26
|
"The name of the session": "セッション名",
|
|
25
27
|
"Select a date and time": "日付と時刻を選択",
|
|
26
28
|
"The timezone which the session will take place.": "セッションが行われるタイムゾーン。",
|
|
27
29
|
"The name of the event": "イベントの名前",
|
|
28
30
|
"The event you want to publish.": "公開するイベント。",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
|
|
31
33
|
"GET": "取得",
|
|
32
34
|
"POST": "POST",
|
|
33
35
|
"PATCH": "PATCH",
|
|
34
36
|
"PUT": "PUT",
|
|
35
37
|
"DELETE": "削除",
|
|
36
38
|
"HEAD": "頭",
|
|
39
|
+
"None": "なし",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "フォームデータ",
|
|
42
|
+
"Raw": "Raw",
|
|
37
43
|
"Booking Created": "作成された予約",
|
|
38
44
|
"Booking Started": "予約を開始しました",
|
|
39
45
|
"Booking Ended": "予約が終了しました",
|
package/src/i18n/nl.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "Methode",
|
|
18
18
|
"Headers": "Kopteksten",
|
|
19
19
|
"Query Parameters": "Query parameters",
|
|
20
|
+
"Body Type": "Type lichaam",
|
|
20
21
|
"Body": "Lichaam",
|
|
21
22
|
"Response is Binary ?": "Antwoord is binair?",
|
|
22
23
|
"No Error on Failure": "Geen fout bij fout",
|
|
23
24
|
"Timeout (in seconds)": "Time-out (in seconden)",
|
|
25
|
+
"Follow redirects": "Volg omleidingen",
|
|
24
26
|
"The name of the session": "De naam van de sessie",
|
|
25
27
|
"Select a date and time": "Selecteer een datum en tijd",
|
|
26
28
|
"The timezone which the session will take place.": "De tijdzone die de zitting zal plaatsvinden.",
|
|
27
29
|
"The name of the event": "De naam van het evenement",
|
|
28
30
|
"The event you want to publish.": "De gebeurtenis die u wilt publiceren.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
|
|
31
33
|
"GET": "KRIJG",
|
|
32
34
|
"POST": "POSTE",
|
|
33
35
|
"PATCH": "BEKIJK",
|
|
34
36
|
"PUT": "PUT",
|
|
35
37
|
"DELETE": "VERWIJDEREN",
|
|
36
38
|
"HEAD": "HOOFD",
|
|
39
|
+
"None": "geen",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "Formulieren gegevens",
|
|
42
|
+
"Raw": "Onbewerkte",
|
|
37
43
|
"Booking Created": "Boeking gemaakt",
|
|
38
44
|
"Booking Started": "Boeking gestart",
|
|
39
45
|
"Booking Ended": "Boeking afgelopen",
|
package/src/i18n/pt.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "Método",
|
|
18
18
|
"Headers": "Cabeçalhos",
|
|
19
19
|
"Query Parameters": "Parâmetros da consulta",
|
|
20
|
+
"Body Type": "Tipo de Corpo",
|
|
20
21
|
"Body": "Conteúdo",
|
|
21
22
|
"Response is Binary ?": "A resposta é binária ?",
|
|
22
23
|
"No Error on Failure": "Nenhum erro no Failure",
|
|
23
24
|
"Timeout (in seconds)": "Tempo limite (em segundos)",
|
|
25
|
+
"Follow redirects": "Seguir redirecionamentos",
|
|
24
26
|
"The name of the session": "O nome da sessão",
|
|
25
27
|
"Select a date and time": "Selecione uma data e hora",
|
|
26
28
|
"The timezone which the session will take place.": "O fuso horário que a sessão terá lugar.",
|
|
27
29
|
"The name of the event": "O nome do evento",
|
|
28
30
|
"The event you want to publish.": "O evento que você deseja publicar.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
|
|
31
33
|
"GET": "OBTER",
|
|
32
34
|
"POST": "POSTAR",
|
|
33
35
|
"PATCH": "COMPRAR",
|
|
34
36
|
"PUT": "COLOCAR",
|
|
35
37
|
"DELETE": "EXCLUIR",
|
|
36
38
|
"HEAD": "CABEÇA",
|
|
39
|
+
"None": "Nenhuma",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "Dados de Formulário",
|
|
42
|
+
"Raw": "RAW",
|
|
37
43
|
"Booking Created": "Reserva criada",
|
|
38
44
|
"Booking Started": "Reserva iniciada",
|
|
39
45
|
"Booking Ended": "Reserva terminada",
|
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "Method",
|
|
18
18
|
"Headers": "Headers",
|
|
19
19
|
"Query Parameters": "Query Parameters",
|
|
20
|
+
"Body Type": "Body Type",
|
|
20
21
|
"Body": "Body",
|
|
21
22
|
"Response is Binary ?": "Response is Binary ?",
|
|
22
23
|
"No Error on Failure": "No Error on Failure",
|
|
23
24
|
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
25
|
+
"Follow redirects": "Follow redirects",
|
|
24
26
|
"The name of the session": "The name of the session",
|
|
25
27
|
"Select a date and time": "Select a date and time",
|
|
26
28
|
"The timezone which the session will take place.": "The timezone which the session will take place.",
|
|
27
29
|
"The name of the event": "The name of the event",
|
|
28
30
|
"The event you want to publish.": "The event you want to publish.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
|
|
31
33
|
"GET": "GET",
|
|
32
34
|
"POST": "POST",
|
|
33
35
|
"PATCH": "PATCH",
|
|
34
36
|
"PUT": "PUT",
|
|
35
37
|
"DELETE": "DELETE",
|
|
36
38
|
"HEAD": "HEAD",
|
|
39
|
+
"None": "None",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "Form Data",
|
|
42
|
+
"Raw": "Raw",
|
|
37
43
|
"Booking Created": "Booking Created",
|
|
38
44
|
"Booking Started": "Booking Started",
|
|
39
45
|
"Booking Ended": "Booking Ended",
|
package/src/i18n/zh.json
CHANGED
|
@@ -17,23 +17,29 @@
|
|
|
17
17
|
"Method": "方法",
|
|
18
18
|
"Headers": "信头",
|
|
19
19
|
"Query Parameters": "查询参数",
|
|
20
|
+
"Body Type": "Body Type",
|
|
20
21
|
"Body": "正文内容",
|
|
21
22
|
"Response is Binary ?": "Response is Binary ?",
|
|
22
23
|
"No Error on Failure": "失败时没有错误",
|
|
23
24
|
"Timeout (in seconds)": "超时(秒)",
|
|
25
|
+
"Follow redirects": "Follow redirects",
|
|
24
26
|
"The name of the session": "The name of the session",
|
|
25
27
|
"Select a date and time": "Select a date and time",
|
|
26
28
|
"The timezone which the session will take place.": "The timezone which the session will take place.",
|
|
27
29
|
"The name of the event": "The name of the event",
|
|
28
30
|
"The event you want to publish.": "The event you want to publish.",
|
|
29
31
|
"Authorization headers are injected automatically from your connection.": "授权头自动从您的连接中注入。",
|
|
30
|
-
"Enable for files like PDFs, images, etc
|
|
32
|
+
"Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
|
|
31
33
|
"GET": "获取",
|
|
32
34
|
"POST": "帖子",
|
|
33
35
|
"PATCH": "PATCH",
|
|
34
36
|
"PUT": "弹出",
|
|
35
37
|
"DELETE": "删除",
|
|
36
38
|
"HEAD": "黑色",
|
|
39
|
+
"None": "无",
|
|
40
|
+
"JSON": "JSON",
|
|
41
|
+
"Form Data": "表单数据",
|
|
42
|
+
"Raw": "原始文件",
|
|
37
43
|
"Booking Created": "Booking Created",
|
|
38
44
|
"Booking Started": "Booking Started",
|
|
39
45
|
"Booking Ended": "Booking Ended",
|
|
@@ -34,6 +34,8 @@ export declare function createSessionsUsWebhookTrigger(data: CreateWebhookTrigge
|
|
|
34
34
|
permission: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
35
35
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {
|
|
36
36
|
permission: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
37
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").SecretTextProperty<true>, {
|
|
38
|
+
permission: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
37
39
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {
|
|
38
40
|
permission: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
39
41
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const bookingCreated: import("dist/packages/pieces/community/fram
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const bookingEnded: import("dist/packages/pieces/community/framew
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const bookingStarted: import("dist/packages/pieces/community/fram
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const eventCreated: import("dist/packages/pieces/community/framew
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const eventEnded: import("dist/packages/pieces/community/framewor
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const eventNewRegistration: import("dist/packages/pieces/communit
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const eventPublished: import("dist/packages/pieces/community/fram
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const eventStarted: import("dist/packages/pieces/community/framew
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const sessionCreated: import("dist/packages/pieces/community/fram
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const sessionEnded: import("dist/packages/pieces/community/framew
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const sessionStarted: import("dist/packages/pieces/community/fram
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const takeawayReady: import("dist/packages/pieces/community/frame
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|
|
@@ -2,6 +2,8 @@ export declare const transcriptReady: import("dist/packages/pieces/community/fra
|
|
|
2
2
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
3
3
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.POLLING, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
4
4
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
|
+
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.MANUAL, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
|
+
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
5
7
|
}> | import("dist/packages/pieces/community/framework/src").ITrigger<import("dist/packages/shared/src").TriggerStrategy.APP_WEBHOOK, import("dist/packages/pieces/community/framework/src").SecretTextProperty<true>, {
|
|
6
8
|
permission: import("dist/packages/pieces/community/framework/src").StaticDropdownProperty<string, true>;
|
|
7
9
|
}>;
|