@activepieces/piece-mailgun 0.0.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.
Files changed (67) hide show
  1. package/package.json +16 -0
  2. package/src/i18n/fr.json +126 -0
  3. package/src/i18n/translation.json +126 -0
  4. package/src/index.d.ts +9 -0
  5. package/src/index.d.ts.map +1 -0
  6. package/src/index.js +109 -0
  7. package/src/index.js.map +1 -0
  8. package/src/lib/actions/add-mailing-list-member.d.ts +15 -0
  9. package/src/lib/actions/add-mailing-list-member.d.ts.map +1 -0
  10. package/src/lib/actions/add-mailing-list-member.js +76 -0
  11. package/src/lib/actions/add-mailing-list-member.js.map +1 -0
  12. package/src/lib/actions/get-domain-stats.d.ts +12 -0
  13. package/src/lib/actions/get-domain-stats.d.ts.map +1 -0
  14. package/src/lib/actions/get-domain-stats.js +117 -0
  15. package/src/lib/actions/get-domain-stats.js.map +1 -0
  16. package/src/lib/actions/get-events.d.ts +15 -0
  17. package/src/lib/actions/get-events.d.ts.map +1 -0
  18. package/src/lib/actions/get-events.js +141 -0
  19. package/src/lib/actions/get-events.js.map +1 -0
  20. package/src/lib/actions/list-bounces.d.ts +11 -0
  21. package/src/lib/actions/list-bounces.d.ts.map +1 -0
  22. package/src/lib/actions/list-bounces.js +49 -0
  23. package/src/lib/actions/list-bounces.js.map +1 -0
  24. package/src/lib/actions/send-email.d.ts +18 -0
  25. package/src/lib/actions/send-email.d.ts.map +1 -0
  26. package/src/lib/actions/send-email.js +93 -0
  27. package/src/lib/actions/send-email.js.map +1 -0
  28. package/src/lib/actions/validate-email.d.ts +8 -0
  29. package/src/lib/actions/validate-email.d.ts.map +1 -0
  30. package/src/lib/actions/validate-email.js +54 -0
  31. package/src/lib/actions/validate-email.js.map +1 -0
  32. package/src/lib/common/index.d.ts +39 -0
  33. package/src/lib/common/index.d.ts.map +1 -0
  34. package/src/lib/common/index.js +165 -0
  35. package/src/lib/common/index.js.map +1 -0
  36. package/src/lib/triggers/common.d.ts +42 -0
  37. package/src/lib/triggers/common.d.ts.map +1 -0
  38. package/src/lib/triggers/common.js +102 -0
  39. package/src/lib/triggers/common.js.map +1 -0
  40. package/src/lib/triggers/new-bounce-event.d.ts +34 -0
  41. package/src/lib/triggers/new-bounce-event.d.ts.map +1 -0
  42. package/src/lib/triggers/new-bounce-event.js +29 -0
  43. package/src/lib/triggers/new-bounce-event.js.map +1 -0
  44. package/src/lib/triggers/new-click-event.d.ts +34 -0
  45. package/src/lib/triggers/new-click-event.d.ts.map +1 -0
  46. package/src/lib/triggers/new-click-event.js +29 -0
  47. package/src/lib/triggers/new-click-event.js.map +1 -0
  48. package/src/lib/triggers/new-complaint-event.d.ts +34 -0
  49. package/src/lib/triggers/new-complaint-event.d.ts.map +1 -0
  50. package/src/lib/triggers/new-complaint-event.js +24 -0
  51. package/src/lib/triggers/new-complaint-event.js.map +1 -0
  52. package/src/lib/triggers/new-delivery-event.d.ts +34 -0
  53. package/src/lib/triggers/new-delivery-event.d.ts.map +1 -0
  54. package/src/lib/triggers/new-delivery-event.js +26 -0
  55. package/src/lib/triggers/new-delivery-event.js.map +1 -0
  56. package/src/lib/triggers/new-failed-delivery-event.d.ts +34 -0
  57. package/src/lib/triggers/new-failed-delivery-event.d.ts.map +1 -0
  58. package/src/lib/triggers/new-failed-delivery-event.js +29 -0
  59. package/src/lib/triggers/new-failed-delivery-event.js.map +1 -0
  60. package/src/lib/triggers/new-open-event.d.ts +34 -0
  61. package/src/lib/triggers/new-open-event.d.ts.map +1 -0
  62. package/src/lib/triggers/new-open-event.js +28 -0
  63. package/src/lib/triggers/new-open-event.js.map +1 -0
  64. package/src/lib/triggers/new-unsubscribe-event.d.ts +34 -0
  65. package/src/lib/triggers/new-unsubscribe-event.d.ts.map +1 -0
  66. package/src/lib/triggers/new-unsubscribe-event.js +28 -0
  67. package/src/lib/triggers/new-unsubscribe-event.js.map +1 -0
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@activepieces/piece-mailgun",
3
+ "version": "0.0.1",
4
+ "main": "./src/index.js",
5
+ "types": "./src/index.d.ts",
6
+ "scripts": {
7
+ "build": "tsc -p tsconfig.lib.json && cp package.json dist/",
8
+ "lint": "eslint 'src/**/*.ts'"
9
+ },
10
+ "dependencies": {
11
+ "@activepieces/pieces-common": "0.12.0",
12
+ "@activepieces/pieces-framework": "0.26.0",
13
+ "@activepieces/shared": "0.51.0",
14
+ "tslib": "2.6.2"
15
+ }
16
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "Email delivery service for sending, receiving, and tracking emails": "Service de livraison d'emails pour envoyer, recevoir et suivre vos emails",
3
+ "API Key": "Clé API",
4
+ "Region": "Région",
5
+ "Your Mailgun private API key (starts with `key-`)": "Votre clé API privée Mailgun (commence par `key-`)",
6
+ "Select the region your Mailgun account is in. Most accounts use US.": "Sélectionnez la région de votre compte Mailgun. La plupart des comptes utilisent US.",
7
+ "US": "US",
8
+ "EU": "EU",
9
+ "To get your API key:\n1. Log in to your [Mailgun dashboard](https://app.mailgun.com)\n2. Go to **Settings > API Security**\n3. Copy your **Private API Key** (starts with `key-`)": "Pour obtenir votre clé API :\n1. Connectez-vous à votre [tableau de bord Mailgun](https://app.mailgun.com)\n2. Allez dans **Settings > API Security**\n3. Copiez votre **Private API Key** (commence par `key-`)",
10
+ "Send Email": "Envoyer un email",
11
+ "Validate Email": "Valider un email",
12
+ "Add Mailing List Member": "Ajouter un membre à une liste de diffusion",
13
+ "Get Events": "Récupérer les événements",
14
+ "Get Domain Stats": "Récupérer les statistiques du domaine",
15
+ "List Bounces": "Lister les rebonds",
16
+ "Custom API Call": "Appel API personnalisé",
17
+ "Send an email using your Mailgun domain": "Envoyer un email en utilisant votre domaine Mailgun",
18
+ "Validate an email address using Mailgun validation service. Requires a Mailgun account with email validation enabled.": "Valider une adresse email avec le service de validation Mailgun. Nécessite un compte Mailgun avec la validation d'email activée.",
19
+ "Add a new member to a Mailgun mailing list": "Ajouter un nouveau membre à une liste de diffusion Mailgun",
20
+ "Retrieve email events from your Mailgun domain (deliveries, failures, opens, clicks, etc.). Useful for monitoring and alerting.": "Récupérer les événements email de votre domaine Mailgun (livraisons, échecs, ouvertures, clics, etc.). Utile pour la surveillance et les alertes.",
21
+ "Retrieve aggregated email statistics for a Mailgun domain (delivered, failed, opened, etc.). Useful for monitoring delivery health and detecting anomalies.": "Récupérer les statistiques agrégées d'un domaine Mailgun (livrés, échoués, ouverts, etc.). Utile pour surveiller la santé de livraison et détecter les anomalies.",
22
+ "Retrieve the list of bounced email addresses for a Mailgun domain. Useful for cleanup after delivery issues or spam attacks.": "Récupérer la liste des adresses email en rebond pour un domaine Mailgun. Utile pour le nettoyage après des problèmes de livraison ou des attaques spam.",
23
+ "Make a custom API call to a specific endpoint": "Effectuer un appel API personnalisé vers un endpoint spécifique",
24
+ "Domain": "Domaine",
25
+ "From": "Expéditeur",
26
+ "To Email Address": "Adresse email du destinataire",
27
+ "CC Email Address": "Adresse email en copie (CC)",
28
+ "BCC Email Address": "Adresse email en copie cachée (CCI)",
29
+ "Reply-To Email Address": "Adresse email de réponse",
30
+ "Email Subject": "Objet de l'email",
31
+ "Email Body (Plain Text)": "Corps de l'email (texte brut)",
32
+ "Email Body (HTML)": "Corps de l'email (HTML)",
33
+ "Email Address": "Adresse email",
34
+ "Provider Lookup": "Vérification du fournisseur",
35
+ "Mailing List": "Liste de diffusion",
36
+ "Member Email Address": "Adresse email du membre",
37
+ "Member Name": "Nom du membre",
38
+ "Update If Exists": "Mettre à jour si existant",
39
+ "Subscribed": "Abonné",
40
+ "Custom Variables": "Variables personnalisées",
41
+ "Event Type": "Type d'événement",
42
+ "Severity": "Sévérité",
43
+ "Begin Date": "Date de début",
44
+ "End Date": "Date de fin",
45
+ "Max Results": "Nombre maximum de résultats",
46
+ "Event Types": "Types d'événements",
47
+ "Duration": "Durée",
48
+ "Method": "Méthode",
49
+ "Headers": "En-têtes",
50
+ "Query Parameters": "Paramètres de requête",
51
+ "Body Type": "Type du corps",
52
+ "Body": "Corps",
53
+ "Response is Binary ?": "La réponse est binaire ?",
54
+ "No Error on Failure": "Pas d'erreur en cas d'échec",
55
+ "Timeout (in seconds)": "Délai d'attente (en secondes)",
56
+ "Follow redirects": "Suivre les redirections",
57
+ "Select the Mailgun domain to use": "Sélectionnez le domaine Mailgun à utiliser",
58
+ "Sender email address, e.g. \"Your Name <you@yourdomain.com>\"": "Adresse email de l'expéditeur, ex. \"Votre Nom <vous@votredomaine.com>\"",
59
+ "Recipient email address. For multiple recipients, separate with commas.": "Adresse email du destinataire. Pour plusieurs destinataires, séparez par des virgules.",
60
+ "Carbon copy recipients, separated by commas.": "Destinataires en copie, séparés par des virgules.",
61
+ "Blind carbon copy recipients, separated by commas.": "Destinataires en copie cachée, séparés par des virgules.",
62
+ "Email address for replies.": "Adresse email pour les réponses.",
63
+ "Plain text version of the email body.": "Version texte brut du corps de l'email.",
64
+ "HTML version of the email body.": "Version HTML du corps de l'email.",
65
+ "The email address to validate.": "L'adresse email à valider.",
66
+ "Enable additional mailbox provider checks for more accurate results.": "Activer les vérifications supplémentaires du fournisseur de messagerie pour des résultats plus précis.",
67
+ "Select the mailing list": "Sélectionnez la liste de diffusion",
68
+ "The email address to add to the mailing list.": "L'adresse email à ajouter à la liste de diffusion.",
69
+ "The name of the member.": "Le nom du membre.",
70
+ "If enabled, updates the member if they already exist. Otherwise, an error is returned for duplicates.": "Si activé, met à jour le membre s'il existe déjà. Sinon, une erreur est renvoyée pour les doublons.",
71
+ "Set the subscription status of the member.": "Définir le statut d'abonnement du membre.",
72
+ "JSON object with custom variables to store with this member, e.g. {\"age\": 30, \"city\": \"Paris\"}.": "Objet JSON avec des variables personnalisées à stocker pour ce membre, ex. {\"age\": 30, \"city\": \"Paris\"}.",
73
+ "Filter events by type.": "Filtrer les événements par type.",
74
+ "Only applies to \"failed\" events. Filter by permanent (hard bounce) or temporary (soft bounce).": "S'applique uniquement aux événements \"failed\". Filtrer par permanent (rebond dur) ou temporaire (rebond mou).",
75
+ "Start of the time range. RFC 2822 date (e.g. \"Fri, 28 Mar 2026 10:00:00 -0000\") or Unix timestamp (e.g. \"1711620000\"). Leave empty for Mailgun default (about 30 days ago).": "Début de la plage horaire. Date RFC 2822 (ex. \"Fri, 28 Mar 2026 10:00:00 -0000\") ou timestamp Unix (ex. \"1711620000\"). Laisser vide pour la valeur par défaut Mailgun (environ 30 jours).",
76
+ "End of the time range. Same format as Begin Date. Leave empty for now.": "Fin de la plage horaire. Même format que la date de début. Laisser vide pour maintenant.",
77
+ "Maximum number of events to return. Default is 100, max is 1000. Mailgun returns up to 300 per page — pagination is handled automatically.": "Nombre maximum d'événements à retourner. Par défaut 100, max 1000. Mailgun retourne jusqu'à 300 par page — la pagination est gérée automatiquement.",
78
+ "Select which event types to include in the statistics.": "Sélectionnez les types d'événements à inclure dans les statistiques.",
79
+ "Time period to aggregate stats over.": "Période sur laquelle agréger les statistiques.",
80
+ "Maximum number of bounces to return (1-1000). Default is 100.": "Nombre maximum de rebonds à retourner (1-1000). Par défaut 100.",
81
+ "Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement depuis votre connexion.",
82
+ "Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDF, images, etc.",
83
+ "GET": "GET",
84
+ "POST": "POST",
85
+ "PATCH": "PATCH",
86
+ "PUT": "PUT",
87
+ "DELETE": "DELETE",
88
+ "HEAD": "HEAD",
89
+ "None": "Aucun",
90
+ "JSON": "JSON",
91
+ "Form Data": "Données de formulaire",
92
+ "Raw": "Brut",
93
+ "Failed (permanent + temporary)": "Échoué (permanent + temporaire)",
94
+ "Delivered": "Livré",
95
+ "Accepted": "Accepté",
96
+ "Rejected": "Rejeté",
97
+ "Opened": "Ouvert",
98
+ "Clicked": "Cliqué",
99
+ "Complained": "Signalé comme spam",
100
+ "Unsubscribed": "Désabonné",
101
+ "Stored": "Stocké",
102
+ "All": "Tous",
103
+ "Permanent (hard bounce)": "Permanent (rebond dur)",
104
+ "Temporary (soft bounce)": "Temporaire (rebond mou)",
105
+ "Failed": "Échoué",
106
+ "Last 1 hour": "Dernière heure",
107
+ "Last 6 hours": "6 dernières heures",
108
+ "Last 12 hours": "12 dernières heures",
109
+ "Last 24 hours": "24 dernières heures",
110
+ "Last 7 days": "7 derniers jours",
111
+ "Last 30 days": "30 derniers jours",
112
+ "New Bounce Event": "Nouvel événement de rebond",
113
+ "New Complaint Event": "Nouvelle plainte pour spam",
114
+ "New Delivery Event": "Nouvel événement de livraison",
115
+ "New Failed Delivery Event": "Nouvel échec de livraison",
116
+ "New Open Event": "Nouvel événement d'ouverture",
117
+ "New Click Event": "Nouvel événement de clic",
118
+ "New Unsubscribe Event": "Nouveau désabonnement",
119
+ "Triggers when an email permanently fails to deliver (hard bounce) in Mailgun": "Se déclenche lorsqu'un email échoue définitivement lors de la livraison dans Mailgun (rebond dur)",
120
+ "Triggers when a recipient reports an email as spam in Mailgun": "Se déclenche lorsqu'un destinataire signale un email comme spam dans Mailgun",
121
+ "Triggers when an email is successfully delivered in Mailgun": "Se déclenche lorsqu'un email est livré avec succès dans Mailgun",
122
+ "Triggers when an email temporarily fails to deliver in Mailgun (will be retried)": "Se déclenche lorsqu'un email échoue temporairement lors de la livraison dans Mailgun (sera réessayé)",
123
+ "Triggers when a recipient opens an email in Mailgun": "Se déclenche lorsqu'un destinataire ouvre un email dans Mailgun",
124
+ "Triggers when a recipient clicks a tracked link in an email in Mailgun": "Se déclenche lorsqu'un destinataire clique sur un lien suivi dans un email dans Mailgun",
125
+ "Triggers when a recipient unsubscribes from emails in Mailgun": "Se déclenche lorsqu'un destinataire se désabonne des emails dans Mailgun"
126
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "Email delivery service for sending, receiving, and tracking emails": "Email delivery service for sending, receiving, and tracking emails",
3
+ "API Key": "API Key",
4
+ "Region": "Region",
5
+ "Your Mailgun private API key (starts with `key-`)": "Your Mailgun private API key (starts with `key-`)",
6
+ "Select the region your Mailgun account is in. Most accounts use US.": "Select the region your Mailgun account is in. Most accounts use US.",
7
+ "US": "US",
8
+ "EU": "EU",
9
+ "To get your API key:\n1. Log in to your [Mailgun dashboard](https://app.mailgun.com)\n2. Go to **Settings > API Security**\n3. Copy your **Private API Key** (starts with `key-`)": "To get your API key:\n1. Log in to your [Mailgun dashboard](https://app.mailgun.com)\n2. Go to **Settings > API Security**\n3. Copy your **Private API Key** (starts with `key-`)",
10
+ "Send Email": "Send Email",
11
+ "Validate Email": "Validate Email",
12
+ "Add Mailing List Member": "Add Mailing List Member",
13
+ "Get Events": "Get Events",
14
+ "Get Domain Stats": "Get Domain Stats",
15
+ "List Bounces": "List Bounces",
16
+ "Custom API Call": "Custom API Call",
17
+ "Send an email using your Mailgun domain": "Send an email using your Mailgun domain",
18
+ "Validate an email address using Mailgun validation service. Requires a Mailgun account with email validation enabled.": "Validate an email address using Mailgun validation service. Requires a Mailgun account with email validation enabled.",
19
+ "Add a new member to a Mailgun mailing list": "Add a new member to a Mailgun mailing list",
20
+ "Retrieve email events from your Mailgun domain (deliveries, failures, opens, clicks, etc.). Useful for monitoring and alerting.": "Retrieve email events from your Mailgun domain (deliveries, failures, opens, clicks, etc.). Useful for monitoring and alerting.",
21
+ "Retrieve aggregated email statistics for a Mailgun domain (delivered, failed, opened, etc.). Useful for monitoring delivery health and detecting anomalies.": "Retrieve aggregated email statistics for a Mailgun domain (delivered, failed, opened, etc.). Useful for monitoring delivery health and detecting anomalies.",
22
+ "Retrieve the list of bounced email addresses for a Mailgun domain. Useful for cleanup after delivery issues or spam attacks.": "Retrieve the list of bounced email addresses for a Mailgun domain. Useful for cleanup after delivery issues or spam attacks.",
23
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
24
+ "Domain": "Domain",
25
+ "From": "From",
26
+ "To Email Address": "To Email Address",
27
+ "CC Email Address": "CC Email Address",
28
+ "BCC Email Address": "BCC Email Address",
29
+ "Reply-To Email Address": "Reply-To Email Address",
30
+ "Email Subject": "Email Subject",
31
+ "Email Body (Plain Text)": "Email Body (Plain Text)",
32
+ "Email Body (HTML)": "Email Body (HTML)",
33
+ "Email Address": "Email Address",
34
+ "Provider Lookup": "Provider Lookup",
35
+ "Mailing List": "Mailing List",
36
+ "Member Email Address": "Member Email Address",
37
+ "Member Name": "Member Name",
38
+ "Update If Exists": "Update If Exists",
39
+ "Subscribed": "Subscribed",
40
+ "Custom Variables": "Custom Variables",
41
+ "Event Type": "Event Type",
42
+ "Severity": "Severity",
43
+ "Begin Date": "Begin Date",
44
+ "End Date": "End Date",
45
+ "Max Results": "Max Results",
46
+ "Event Types": "Event Types",
47
+ "Duration": "Duration",
48
+ "Method": "Method",
49
+ "Headers": "Headers",
50
+ "Query Parameters": "Query Parameters",
51
+ "Body Type": "Body Type",
52
+ "Body": "Body",
53
+ "Response is Binary ?": "Response is Binary ?",
54
+ "No Error on Failure": "No Error on Failure",
55
+ "Timeout (in seconds)": "Timeout (in seconds)",
56
+ "Follow redirects": "Follow redirects",
57
+ "Select the Mailgun domain to use": "Select the Mailgun domain to use",
58
+ "Sender email address, e.g. \"Your Name <you@yourdomain.com>\"": "Sender email address, e.g. \"Your Name <you@yourdomain.com>\"",
59
+ "Recipient email address. For multiple recipients, separate with commas.": "Recipient email address. For multiple recipients, separate with commas.",
60
+ "Carbon copy recipients, separated by commas.": "Carbon copy recipients, separated by commas.",
61
+ "Blind carbon copy recipients, separated by commas.": "Blind carbon copy recipients, separated by commas.",
62
+ "Email address for replies.": "Email address for replies.",
63
+ "Plain text version of the email body.": "Plain text version of the email body.",
64
+ "HTML version of the email body.": "HTML version of the email body.",
65
+ "The email address to validate.": "The email address to validate.",
66
+ "Enable additional mailbox provider checks for more accurate results.": "Enable additional mailbox provider checks for more accurate results.",
67
+ "Select the mailing list": "Select the mailing list",
68
+ "The email address to add to the mailing list.": "The email address to add to the mailing list.",
69
+ "The name of the member.": "The name of the member.",
70
+ "If enabled, updates the member if they already exist. Otherwise, an error is returned for duplicates.": "If enabled, updates the member if they already exist. Otherwise, an error is returned for duplicates.",
71
+ "Set the subscription status of the member.": "Set the subscription status of the member.",
72
+ "JSON object with custom variables to store with this member, e.g. {\"age\": 30, \"city\": \"Paris\"}.": "JSON object with custom variables to store with this member, e.g. {\"age\": 30, \"city\": \"Paris\"}.",
73
+ "Filter events by type.": "Filter events by type.",
74
+ "Only applies to \"failed\" events. Filter by permanent (hard bounce) or temporary (soft bounce).": "Only applies to \"failed\" events. Filter by permanent (hard bounce) or temporary (soft bounce).",
75
+ "Start of the time range. RFC 2822 date (e.g. \"Fri, 28 Mar 2026 10:00:00 -0000\") or Unix timestamp (e.g. \"1711620000\"). Leave empty for Mailgun default (about 30 days ago).": "Start of the time range. RFC 2822 date (e.g. \"Fri, 28 Mar 2026 10:00:00 -0000\") or Unix timestamp (e.g. \"1711620000\"). Leave empty for Mailgun default (about 30 days ago).",
76
+ "End of the time range. Same format as Begin Date. Leave empty for now.": "End of the time range. Same format as Begin Date. Leave empty for now.",
77
+ "Maximum number of events to return. Default is 100, max is 1000. Mailgun returns up to 300 per page — pagination is handled automatically.": "Maximum number of events to return. Default is 100, max is 1000. Mailgun returns up to 300 per page — pagination is handled automatically.",
78
+ "Select which event types to include in the statistics.": "Select which event types to include in the statistics.",
79
+ "Time period to aggregate stats over.": "Time period to aggregate stats over.",
80
+ "Maximum number of bounces to return (1-1000). Default is 100.": "Maximum number of bounces to return (1-1000). Default is 100.",
81
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
82
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
83
+ "Failed (permanent + temporary)": "Failed (permanent + temporary)",
84
+ "Delivered": "Delivered",
85
+ "Accepted": "Accepted",
86
+ "Rejected": "Rejected",
87
+ "Opened": "Opened",
88
+ "Clicked": "Clicked",
89
+ "Complained": "Complained",
90
+ "Unsubscribed": "Unsubscribed",
91
+ "Stored": "Stored",
92
+ "All": "All",
93
+ "Permanent (hard bounce)": "Permanent (hard bounce)",
94
+ "Temporary (soft bounce)": "Temporary (soft bounce)",
95
+ "Failed": "Failed",
96
+ "Last 1 hour": "Last 1 hour",
97
+ "Last 6 hours": "Last 6 hours",
98
+ "Last 12 hours": "Last 12 hours",
99
+ "Last 24 hours": "Last 24 hours",
100
+ "Last 7 days": "Last 7 days",
101
+ "Last 30 days": "Last 30 days",
102
+ "GET": "GET",
103
+ "POST": "POST",
104
+ "PATCH": "PATCH",
105
+ "PUT": "PUT",
106
+ "DELETE": "DELETE",
107
+ "HEAD": "HEAD",
108
+ "None": "None",
109
+ "JSON": "JSON",
110
+ "Form Data": "Form Data",
111
+ "Raw": "Raw",
112
+ "New Bounce Event": "New Bounce Event",
113
+ "New Complaint Event": "New Complaint Event",
114
+ "New Delivery Event": "New Delivery Event",
115
+ "New Failed Delivery Event": "New Failed Delivery Event",
116
+ "New Open Event": "New Open Event",
117
+ "New Click Event": "New Click Event",
118
+ "New Unsubscribe Event": "New Unsubscribe Event",
119
+ "Triggers when an email permanently fails to deliver (hard bounce) in Mailgun": "Triggers when an email permanently fails to deliver (hard bounce) in Mailgun",
120
+ "Triggers when a recipient reports an email as spam in Mailgun": "Triggers when a recipient reports an email as spam in Mailgun",
121
+ "Triggers when an email is successfully delivered in Mailgun": "Triggers when an email is successfully delivered in Mailgun",
122
+ "Triggers when an email temporarily fails to deliver in Mailgun (will be retried)": "Triggers when an email temporarily fails to deliver in Mailgun (will be retried)",
123
+ "Triggers when a recipient opens an email in Mailgun": "Triggers when a recipient opens an email in Mailgun",
124
+ "Triggers when a recipient clicks a tracked link in an email in Mailgun": "Triggers when a recipient clicks a tracked link in an email in Mailgun",
125
+ "Triggers when a recipient unsubscribes from emails in Mailgun": "Triggers when a recipient unsubscribes from emails in Mailgun"
126
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ export declare const mailgunAuth: import("@activepieces/pieces-framework").CustomAuthProperty<{
2
+ api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
3
+ region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
4
+ }>;
5
+ export declare const mailgun: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").CustomAuthProperty<{
6
+ api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
7
+ region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
8
+ }>>;
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAsBA,eAAO,MAAM,WAAW;;;EAoDtB,CAAC;AAEH,eAAO,MAAM,OAAO;;;GAuClB,CAAC"}
package/src/index.js ADDED
@@ -0,0 +1,109 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.mailgun = exports.mailgunAuth = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const pieces_common_1 = require("@activepieces/pieces-common");
6
+ const pieces_framework_1 = require("@activepieces/pieces-framework");
7
+ const shared_1 = require("@activepieces/shared");
8
+ const send_email_1 = require("./lib/actions/send-email");
9
+ const validate_email_1 = require("./lib/actions/validate-email");
10
+ const add_mailing_list_member_1 = require("./lib/actions/add-mailing-list-member");
11
+ const get_events_1 = require("./lib/actions/get-events");
12
+ const get_domain_stats_1 = require("./lib/actions/get-domain-stats");
13
+ const list_bounces_1 = require("./lib/actions/list-bounces");
14
+ const new_bounce_event_1 = require("./lib/triggers/new-bounce-event");
15
+ const new_complaint_event_1 = require("./lib/triggers/new-complaint-event");
16
+ const new_delivery_event_1 = require("./lib/triggers/new-delivery-event");
17
+ const new_failed_delivery_event_1 = require("./lib/triggers/new-failed-delivery-event");
18
+ const new_open_event_1 = require("./lib/triggers/new-open-event");
19
+ const new_click_event_1 = require("./lib/triggers/new-click-event");
20
+ const new_unsubscribe_event_1 = require("./lib/triggers/new-unsubscribe-event");
21
+ exports.mailgunAuth = pieces_framework_1.PieceAuth.CustomAuth({
22
+ displayName: 'Mailgun Connection',
23
+ required: true,
24
+ description: `To get your API key:
25
+ 1. Log in to your [Mailgun dashboard](https://app.mailgun.com)
26
+ 2. Go to **Settings > API Security**
27
+ 3. Copy your **Private API Key** (starts with \`key-\`)`,
28
+ props: {
29
+ api_key: pieces_framework_1.PieceAuth.SecretText({
30
+ displayName: 'API Key',
31
+ description: 'Your Mailgun private API key (starts with `key-`)',
32
+ required: true,
33
+ }),
34
+ region: pieces_framework_1.Property.StaticDropdown({
35
+ displayName: 'Region',
36
+ description: 'Select the region your Mailgun account is in. Most accounts use US.',
37
+ required: true,
38
+ defaultValue: 'us',
39
+ options: {
40
+ options: [
41
+ { label: 'US', value: 'us' },
42
+ { label: 'EU', value: 'eu' },
43
+ ],
44
+ },
45
+ }),
46
+ },
47
+ validate: (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ auth }) {
48
+ const baseUrl = auth.region === 'eu'
49
+ ? 'https://api.eu.mailgun.net'
50
+ : 'https://api.mailgun.net';
51
+ const { error } = yield (0, shared_1.tryCatch)(() => pieces_common_1.httpClient.sendRequest({
52
+ method: pieces_common_1.HttpMethod.GET,
53
+ url: `${baseUrl}/v3/domains`,
54
+ authentication: {
55
+ type: pieces_common_1.AuthenticationType.BASIC,
56
+ username: 'api',
57
+ password: auth.api_key,
58
+ },
59
+ queryParams: { limit: '1' },
60
+ }));
61
+ if (error) {
62
+ return {
63
+ valid: false,
64
+ error: 'Invalid API key or region. Please check your credentials and try again.',
65
+ };
66
+ }
67
+ return { valid: true };
68
+ }),
69
+ });
70
+ exports.mailgun = (0, pieces_framework_1.createPiece)({
71
+ displayName: 'Mailgun',
72
+ description: 'Email delivery service for sending, receiving, and tracking emails',
73
+ minimumSupportedRelease: '0.36.1',
74
+ logoUrl: 'https://cdn.activepieces.com/pieces/mailgun.png',
75
+ categories: [shared_1.PieceCategory.MARKETING, shared_1.PieceCategory.COMMUNICATION],
76
+ auth: exports.mailgunAuth,
77
+ authors: ['bst1n', 'onyedikachi-david'],
78
+ actions: [
79
+ send_email_1.sendEmail,
80
+ validate_email_1.validateEmail,
81
+ add_mailing_list_member_1.addMailingListMember,
82
+ get_events_1.getEvents,
83
+ get_domain_stats_1.getDomainStats,
84
+ list_bounces_1.listBounces,
85
+ (0, pieces_common_1.createCustomApiCallAction)({
86
+ baseUrl: (auth) => {
87
+ return (auth === null || auth === void 0 ? void 0 : auth.props.region) === 'eu'
88
+ ? 'https://api.eu.mailgun.net/v3'
89
+ : 'https://api.mailgun.net/v3';
90
+ },
91
+ auth: exports.mailgunAuth,
92
+ authMapping: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
93
+ return {
94
+ Authorization: `Basic ${Buffer.from(`api:${auth.props.api_key}`).toString('base64')}`,
95
+ };
96
+ }),
97
+ }),
98
+ ],
99
+ triggers: [
100
+ new_bounce_event_1.newBounceEvent,
101
+ new_complaint_event_1.newComplaintEvent,
102
+ new_delivery_event_1.newDeliveryEvent,
103
+ new_failed_delivery_event_1.newFailedDeliveryEvent,
104
+ new_open_event_1.newOpenEvent,
105
+ new_click_event_1.newClickEvent,
106
+ new_unsubscribe_event_1.newUnsubscribeEvent,
107
+ ],
108
+ });
109
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,+DAKqC;AACrC,qEAAkF;AAClF,iDAA+D;AAC/D,yDAAqD;AACrD,iEAA6D;AAC7D,mFAA6E;AAC7E,yDAAqD;AACrD,qEAAgE;AAChE,6DAAyD;AACzD,sEAAiE;AACjE,4EAAuE;AACvE,0EAAqE;AACrE,wFAAkF;AAClF,kEAA6D;AAC7D,oEAA+D;AAC/D,gFAA2E;AAE9D,QAAA,WAAW,GAAG,4BAAS,CAAC,UAAU,CAAC;IAC9C,WAAW,EAAE,oBAAoB;IACjC,QAAQ,EAAE,IAAI;IACd,WAAW,EAAE;;;wDAGyC;IACtD,KAAK,EAAE;QACL,OAAO,EAAE,4BAAS,CAAC,UAAU,CAAC;YAC5B,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,mDAAmD;YAChE,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,MAAM,EAAE,2BAAQ,CAAC,cAAc,CAAC;YAC9B,WAAW,EAAE,QAAQ;YACrB,WAAW,EACT,qEAAqE;YACvE,QAAQ,EAAE,IAAI;YACd,YAAY,EAAE,IAAI;YAClB,OAAO,EAAE;gBACP,OAAO,EAAE;oBACP,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE;oBAC5B,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE;iBAC7B;aACF;SACF,CAAC;KACH;IACD,QAAQ,EAAE,KAAiB,EAAE,oDAAZ,EAAE,IAAI,EAAE;QACvB,MAAM,OAAO,GACX,IAAI,CAAC,MAAM,KAAK,IAAI;YAClB,CAAC,CAAC,4BAA4B;YAC9B,CAAC,CAAC,yBAAyB,CAAC;QAChC,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,IAAA,iBAAQ,EAAC,GAAG,EAAE,CACpC,0BAAU,CAAC,WAAW,CAAC;YACrB,MAAM,EAAE,0BAAU,CAAC,GAAG;YACtB,GAAG,EAAE,GAAG,OAAO,aAAa;YAC5B,cAAc,EAAE;gBACd,IAAI,EAAE,kCAAkB,CAAC,KAAK;gBAC9B,QAAQ,EAAE,KAAK;gBACf,QAAQ,EAAE,IAAI,CAAC,OAAO;aACvB;YACD,WAAW,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE;SAC5B,CAAC,CACH,CAAC;QACF,IAAI,KAAK,EAAE,CAAC;YACV,OAAO;gBACL,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,yEAAyE;aACjF,CAAC;QACJ,CAAC;QACD,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IACzB,CAAC,CAAA;CACF,CAAC,CAAC;AAEU,QAAA,OAAO,GAAG,IAAA,8BAAW,EAAC;IACjC,WAAW,EAAE,SAAS;IACtB,WAAW,EACT,oEAAoE;IACtE,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,iDAAiD;IAC1D,UAAU,EAAE,CAAC,sBAAa,CAAC,SAAS,EAAE,sBAAa,CAAC,aAAa,CAAC;IAClE,IAAI,EAAE,mBAAW;IACjB,OAAO,EAAE,CAAC,OAAO,EAAE,mBAAmB,CAAC;IACvC,OAAO,EAAE;QACP,sBAAS;QACT,8BAAa;QACb,8CAAoB;QACpB,sBAAS;QACT,iCAAc;QACd,0BAAW;QACX,IAAA,yCAAyB,EAAC;YACxB,OAAO,EAAE,CAAC,IAAI,EAAE,EAAE;gBAChB,OAAO,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,KAAK,CAAC,MAAM,MAAK,IAAI;oBAChC,CAAC,CAAC,+BAA+B;oBACjC,CAAC,CAAC,4BAA4B,CAAC;YACnC,CAAC;YACD,IAAI,EAAE,mBAAW;YACjB,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAC1B,OAAO;oBACL,aAAa,EAAE,SAAS,MAAM,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;iBACtF,CAAC;YACJ,CAAC,CAAA;SACF,CAAC;KACH;IACD,QAAQ,EAAE;QACR,iCAAc;QACd,uCAAiB;QACjB,qCAAgB;QAChB,kDAAsB;QACtB,6BAAY;QACZ,+BAAa;QACb,2CAAmB;KACpB;CACF,CAAC,CAAC"}
@@ -0,0 +1,15 @@
1
+ export declare const addMailingListMember: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
2
+ api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
3
+ region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
4
+ }>, {
5
+ list: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
6
+ api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
7
+ region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
8
+ }>>;
9
+ address: import("@activepieces/pieces-framework").ShortTextProperty<true>;
10
+ name: import("@activepieces/pieces-framework").ShortTextProperty<false>;
11
+ upsert: import("@activepieces/pieces-framework").CheckboxProperty<true>;
12
+ subscribed: import("@activepieces/pieces-framework").CheckboxProperty<false>;
13
+ vars: import("@activepieces/pieces-framework").JsonProperty<false>;
14
+ }>;
15
+ //# sourceMappingURL=add-mailing-list-member.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-mailing-list-member.d.ts","sourceRoot":"","sources":["../../../../src/lib/actions/add-mailing-list-member.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;EA4E/B,CAAC"}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.addMailingListMember = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const pieces_framework_1 = require("@activepieces/pieces-framework");
6
+ const __1 = require("../..");
7
+ const common_1 = require("../common");
8
+ const pieces_common_1 = require("@activepieces/pieces-common");
9
+ exports.addMailingListMember = (0, pieces_framework_1.createAction)({
10
+ auth: __1.mailgunAuth,
11
+ name: 'add_mailing_list_member',
12
+ displayName: 'Add Mailing List Member',
13
+ description: 'Add a new member to a Mailgun mailing list',
14
+ props: {
15
+ list: common_1.mailgunCommon.mailingListDropdown,
16
+ address: pieces_framework_1.Property.ShortText({
17
+ displayName: 'Member Email Address',
18
+ description: 'The email address to add to the mailing list.',
19
+ required: true,
20
+ }),
21
+ name: pieces_framework_1.Property.ShortText({
22
+ displayName: 'Member Name',
23
+ description: 'The name of the member.',
24
+ required: false,
25
+ }),
26
+ upsert: pieces_framework_1.Property.Checkbox({
27
+ displayName: 'Update If Exists',
28
+ description: 'If enabled, updates the member if they already exist. Otherwise, an error is returned for duplicates.',
29
+ required: true,
30
+ defaultValue: true,
31
+ }),
32
+ subscribed: pieces_framework_1.Property.Checkbox({
33
+ displayName: 'Subscribed',
34
+ description: 'Set the subscription status of the member.',
35
+ required: false,
36
+ defaultValue: true,
37
+ }),
38
+ vars: pieces_framework_1.Property.Json({
39
+ displayName: 'Custom Variables',
40
+ description: 'JSON object with custom variables to store with this member, e.g. {"age": 30, "city": "Paris"}.',
41
+ required: false,
42
+ }),
43
+ },
44
+ run(context) {
45
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
46
+ const { list, address, name, upsert, subscribed, vars } = context.propsValue;
47
+ const auth = context.auth;
48
+ const bodyFields = {
49
+ address,
50
+ upsert: upsert ? 'yes' : 'no',
51
+ subscribed: subscribed === false ? 'no' : 'yes',
52
+ };
53
+ if (name)
54
+ bodyFields['name'] = name;
55
+ if (vars)
56
+ bodyFields['vars'] = JSON.stringify(vars);
57
+ const response = yield (0, common_1.mailgunApiCall)({
58
+ apiKey: auth.props.api_key,
59
+ region: auth.props.region,
60
+ method: pieces_common_1.HttpMethod.POST,
61
+ path: `/v3/lists/${list}/members`,
62
+ body: new URLSearchParams(bodyFields).toString(),
63
+ headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
64
+ });
65
+ const member = response.body.member;
66
+ return {
67
+ message: response.body.message,
68
+ member_address: member.address,
69
+ member_name: member.name,
70
+ member_subscribed: member.subscribed,
71
+ member_vars: member.vars ? JSON.stringify(member.vars) : null,
72
+ };
73
+ });
74
+ },
75
+ });
76
+ //# sourceMappingURL=add-mailing-list-member.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-mailing-list-member.js","sourceRoot":"","sources":["../../../../src/lib/actions/add-mailing-list-member.ts"],"names":[],"mappings":";;;;AAAA,qEAAwE;AACxE,6BAAoC;AACpC,sCAA0D;AAC1D,+DAAyD;AAE5C,QAAA,oBAAoB,GAAG,IAAA,+BAAY,EAAC;IAC/C,IAAI,EAAE,eAAW;IACjB,IAAI,EAAE,yBAAyB;IAC/B,WAAW,EAAE,yBAAyB;IACtC,WAAW,EAAE,4CAA4C;IACzD,KAAK,EAAE;QACL,IAAI,EAAE,sBAAa,CAAC,mBAAmB;QACvC,OAAO,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC1B,WAAW,EAAE,sBAAsB;YACnC,WAAW,EAAE,+CAA+C;YAC5D,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,IAAI,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACvB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,yBAAyB;YACtC,QAAQ,EAAE,KAAK;SAChB,CAAC;QACF,MAAM,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YACxB,WAAW,EAAE,kBAAkB;YAC/B,WAAW,EACT,uGAAuG;YACzG,QAAQ,EAAE,IAAI;YACd,YAAY,EAAE,IAAI;SACnB,CAAC;QACF,UAAU,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YAC5B,WAAW,EAAE,YAAY;YACzB,WAAW,EAAE,4CAA4C;YACzD,QAAQ,EAAE,KAAK;YACf,YAAY,EAAE,IAAI;SACnB,CAAC;QACF,IAAI,EAAE,2BAAQ,CAAC,IAAI,CAAC;YAClB,WAAW,EAAE,kBAAkB;YAC/B,WAAW,EACT,iGAAiG;YACnG,QAAQ,EAAE,KAAK;SAChB,CAAC;KACH;IACK,GAAG,CAAC,OAAO;;YACf,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,GACrD,OAAO,CAAC,UAAU,CAAC;YACrB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;YAE1B,MAAM,UAAU,GAA2B;gBACzC,OAAO;gBACP,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI;gBAC7B,UAAU,EAAE,UAAU,KAAK,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;aAChD,CAAC;YACF,IAAI,IAAI;gBAAE,UAAU,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;YACpC,IAAI,IAAI;gBAAE,UAAU,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;YAEpD,MAAM,QAAQ,GAAG,MAAM,IAAA,uBAAc,EAQlC;gBACD,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,OAAO;gBAC1B,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM;gBACzB,MAAM,EAAE,0BAAU,CAAC,IAAI;gBACvB,IAAI,EAAE,aAAa,IAAI,UAAU;gBACjC,IAAI,EAAE,IAAI,eAAe,CAAC,UAAU,CAAC,CAAC,QAAQ,EAAE;gBAChD,OAAO,EAAE,EAAE,cAAc,EAAE,mCAAmC,EAAE;aACjE,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;YACpC,OAAO;gBACL,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,OAAO;gBAC9B,cAAc,EAAE,MAAM,CAAC,OAAO;gBAC9B,WAAW,EAAE,MAAM,CAAC,IAAI;gBACxB,iBAAiB,EAAE,MAAM,CAAC,UAAU;gBACpC,WAAW,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI;aAC9D,CAAC;QACJ,CAAC;KAAA;CACF,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ export declare const getDomainStats: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
2
+ api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
3
+ region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
4
+ }>, {
5
+ domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
6
+ api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
7
+ region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
8
+ }>>;
9
+ event: import("@activepieces/pieces-framework").StaticMultiSelectDropdownProperty<string, true>;
10
+ duration: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
11
+ }>;
12
+ //# sourceMappingURL=get-domain-stats.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-domain-stats.d.ts","sourceRoot":"","sources":["../../../../src/lib/actions/get-domain-stats.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,cAAc;;;;;;;;;;EA6HzB,CAAC"}