@pipedream/voilanorbert 0.0.3 → 0.1.0

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.
@@ -5,7 +5,12 @@ export default {
5
5
  key: "voilanorbert-find-contact",
6
6
  name: "Find Contact",
7
7
  description: "This action returns a specific contact. The object email is either null when the email is not found, or contains an object with at least email (the email string) and the score. [See the docs here](https://api.voilanorbert.com/2018-01-08/#contacts-get-1)",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
9
14
  type: "action",
10
15
  props: {
11
16
  ...common.props,
@@ -0,0 +1,24 @@
1
+ import voilanorbert from "../../voilanorbert.app.mjs";
2
+
3
+ export default {
4
+ key: "voilanorbert-list-list-id-options",
5
+ name: "List List ID Options",
6
+ description: "Retrieves available options for the List ID field.",
7
+ version: "0.0.1",
8
+ type: "action",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
14
+ props: {
15
+ voilanorbert,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await voilanorbert.propDefinitions.listId.options.call(this.voilanorbert);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -9,7 +9,12 @@ export default {
9
9
  When your account does not have sufficient credits an HTTP status code of 402 is returned.
10
10
  Also, take into consideration that we check the domain for its validity. So even if you provide a correct name+domain set, we may return a HTTP status code of 400 for the domain if we can't locate it.
11
11
  [See the docs here](https://api.voilanorbert.com/2018-01-08/#search-endpoint-post)`,
12
- version: "0.0.2",
12
+ version: "0.0.3",
13
+ annotations: {
14
+ destructiveHint: false,
15
+ openWorldHint: true,
16
+ readOnlyHint: false,
17
+ },
13
18
  type: "action",
14
19
  props: {
15
20
  ...common.props,
@@ -8,7 +8,12 @@ export default {
8
8
  description: `Verifies the given list of emails.
9
9
  In case your account does not have a sufficient Verify API balance the service will try to auto refill the balance by charging using the billing details of the account. If it fails to charge, an HTTP status code of 402 will be returned.
10
10
  [See the docs here](https://api.voilanorbert.com/2018-01-08/#verify-endpoint-post)`,
11
- version: "0.0.2",
11
+ version: "0.0.3",
12
+ annotations: {
13
+ destructiveHint: false,
14
+ openWorldHint: true,
15
+ readOnlyHint: false,
16
+ },
12
17
  type: "action",
13
18
  props: {
14
19
  ...common.props,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/voilanorbert",
3
- "version": "0.0.3",
3
+ "version": "0.1.0",
4
4
  "description": "Pipedream VoilaNorbert Components",
5
5
  "main": "voilanorbert.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^3.1.0"
16
+ "@pipedream/platform": "^3.1.1"
17
17
  }
18
18
  }