n8n-nodes-byteplant 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 (31) hide show
  1. package/LICENSE.md +19 -0
  2. package/README.md +38 -0
  3. package/README_TEMPLATE.md +48 -0
  4. package/dist/credentials/ByteplantAddressValidatorApi.credentials.d.ts +9 -0
  5. package/dist/credentials/ByteplantAddressValidatorApi.credentials.js +57 -0
  6. package/dist/credentials/ByteplantAddressValidatorApi.credentials.js.map +1 -0
  7. package/dist/credentials/ByteplantEmailValidatorApi.credentials.d.ts +9 -0
  8. package/dist/credentials/ByteplantEmailValidatorApi.credentials.js +59 -0
  9. package/dist/credentials/ByteplantEmailValidatorApi.credentials.js.map +1 -0
  10. package/dist/credentials/ByteplantPhoneValidatorApi.credentials.d.ts +9 -0
  11. package/dist/credentials/ByteplantPhoneValidatorApi.credentials.js +59 -0
  12. package/dist/credentials/ByteplantPhoneValidatorApi.credentials.js.map +1 -0
  13. package/dist/nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.d.ts +5 -0
  14. package/dist/nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.js +155 -0
  15. package/dist/nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.js.map +1 -0
  16. package/dist/nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.json +18 -0
  17. package/dist/nodes/ByteplantAddressValidator/byteplant-address-validator.png +0 -0
  18. package/dist/nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.d.ts +5 -0
  19. package/dist/nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.js +84 -0
  20. package/dist/nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.js.map +1 -0
  21. package/dist/nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.json +18 -0
  22. package/dist/nodes/ByteplantEmailValidator/byteplant-email-validator.png +0 -0
  23. package/dist/nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.d.ts +5 -0
  24. package/dist/nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.js +119 -0
  25. package/dist/nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.js.map +1 -0
  26. package/dist/nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.json +18 -0
  27. package/dist/nodes/ByteplantPhoneValidator/byteplant-phone-validator.png +0 -0
  28. package/dist/package.json +67 -0
  29. package/dist/tsconfig.tsbuildinfo +1 -0
  30. package/index.js +0 -0
  31. package/package.json +67 -0
package/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+ Copyright 2022 n8n
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Byteplant Nodes
2
+
3
+ This package contains n8n nodes for [Byteplant](https://www.byteplant.com/).
4
+
5
+ ## Nodes
6
+
7
+ ### Byteplant Address Validator
8
+
9
+ Validate addresses, phone numbers and email addresses - with unparalleled precision in 240+ countries world-wide.
10
+
11
+ #### Input
12
+
13
+ | Name | Type | Required | Description |
14
+ | ------- | ------ | -------- | ------------------- |
15
+ | Address | string | true | Address to validate |
16
+
17
+ ### Byteplant Email Validator
18
+
19
+ Validate addresses, phone numbers and email addresses - with unparalleled precision in 240+ countries world-wide.
20
+
21
+ #### Input
22
+
23
+ | Name | Type | Required | Description |
24
+ | ------------ | ------ | -------- | ------------------------- |
25
+ | EmailAddress | string | true | Email address to validate |
26
+
27
+ ### Byteplant Phone Validator
28
+
29
+ Validate addresses, phone numbers and email addresses - with unparalleled precision in 240+ countries world-wide.
30
+
31
+ #### Input
32
+
33
+ | Name | Type | Required | Description |
34
+ | ----------- | ------ | -------- | ---------------------------------- |
35
+ | PhoneNumber | string | true | Phone number to validate |
36
+ | CountryCode | string | false | Two letter ISO 3166-1 country code |
37
+ | Locale | string | false | IETF language tag for Geocoding |
38
+ | Mode | string | false | Extensive, Express |
@@ -0,0 +1,48 @@
1
+ # n8n-nodes-_node-name_
2
+
3
+ This is an n8n community node. It lets you use _app/service name_ in your n8n workflows.
4
+
5
+ _App/service name_ is _one or two sentences describing the service this node integrates with_.
6
+
7
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
8
+
9
+ [Installation](#installation)
10
+ [Operations](#operations)
11
+ [Credentials](#credentials) <!-- delete if no auth needed -->
12
+ [Compatibility](#compatibility)
13
+ [Usage](#usage) <!-- delete if not using this section -->
14
+ [Resources](#resources)
15
+ [Version history](#version-history) <!-- delete if not using this section -->
16
+
17
+ ## Installation
18
+
19
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
20
+
21
+ ## Operations
22
+
23
+ _List the operations supported by your node._
24
+
25
+ ## Credentials
26
+
27
+ _If users need to authenticate with the app/service, provide details here. You should include prerequisites (such as signing up with the service), available authentication methods, and how to set them up._
28
+
29
+ ## Compatibility
30
+
31
+ _State the minimum n8n version, as well as which versions you test against. You can also include any known version incompatibility issues._
32
+
33
+ ## Usage
34
+
35
+ _This is an optional section. Use it to help users with any difficult or confusing aspects of the node._
36
+
37
+ _By the time users are looking for community nodes, they probably already know n8n basics. But if you expect new users, you can link to the [Try it out](https://docs.n8n.io/try-it-out/) documentation to help them get started._
38
+
39
+ ## Resources
40
+
41
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
42
+ * _Link to app/service documentation._
43
+
44
+ ## Version history
45
+
46
+ _This is another optional section. If your node has multiple versions, include a short description of available versions and what changed, as well as any compatibility impact._
47
+
48
+
@@ -0,0 +1,9 @@
1
+ import { IAuthenticateGeneric, ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow';
2
+ export declare class ByteplantAddressValidatorApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ authenticate: IAuthenticateGeneric;
8
+ test: ICredentialTestRequest;
9
+ }
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ByteplantAddressValidatorApi = void 0;
4
+ class ByteplantAddressValidatorApi {
5
+ constructor() {
6
+ this.name = 'byteplantAddressValidatorApi';
7
+ this.displayName = 'Byteplant Address Validator API';
8
+ this.documentationUrl = 'https://www.address-validator.net/api.html';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ description: "Your address-validator API key. If you don't already have one, go to [Address Validator website](https://www.address-validator.net/api.html) and register to receive an API key.",
15
+ typeOptions: {
16
+ password: true,
17
+ },
18
+ default: '',
19
+ },
20
+ ];
21
+ this.authenticate = {
22
+ type: 'generic',
23
+ properties: {
24
+ qs: {
25
+ APIKey: '={{ $credentials.apiKey }}',
26
+ },
27
+ },
28
+ };
29
+ this.test = {
30
+ request: {
31
+ baseURL: 'https://api.address-validator.net',
32
+ url: '/api/verify',
33
+ qs: {},
34
+ },
35
+ rules: [
36
+ {
37
+ type: 'responseSuccessBody',
38
+ properties: {
39
+ key: 'status',
40
+ value: 'VALID',
41
+ message: 'API key is valid',
42
+ },
43
+ },
44
+ {
45
+ type: 'responseSuccessBody',
46
+ properties: {
47
+ key: 'status',
48
+ value: 'API_KEY_INVALID_OR_DEPLETED',
49
+ message: 'API key is invalid or depleted',
50
+ },
51
+ },
52
+ ],
53
+ };
54
+ }
55
+ }
56
+ exports.ByteplantAddressValidatorApi = ByteplantAddressValidatorApi;
57
+ //# sourceMappingURL=ByteplantAddressValidatorApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ByteplantAddressValidatorApi.credentials.js","sourceRoot":"","sources":["../../credentials/ByteplantAddressValidatorApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,4BAA4B;IAAzC;QACC,SAAI,GAAG,8BAA8B,CAAC;QACtC,gBAAW,GAAG,iCAAiC,CAAC;QAEhD,qBAAgB,GAAG,4CAA4C,CAAC;QAEhE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACV,kLAAkL;gBACnL,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,EAAE,EAAE;oBACH,MAAM,EAAE,4BAA4B;iBACpC;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,mCAAmC;gBAC5C,GAAG,EAAE,aAAa;gBAClB,EAAE,EAAE,EAAE;aACN;YACD,KAAK,EAAE;gBACN;oBACC,IAAI,EAAE,qBAAqB;oBAC3B,UAAU,EAAE;wBACX,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,OAAO;wBACd,OAAO,EAAE,kBAAkB;qBAC3B;iBACD;gBACD;oBACC,IAAI,EAAE,qBAAqB;oBAC3B,UAAU,EAAE;wBACX,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,6BAA6B;wBACpC,OAAO,EAAE,gCAAgC;qBACzC;iBACD;aACD;SACD,CAAC;IACH,CAAC;CAAA;AAtDD,oEAsDC"}
@@ -0,0 +1,9 @@
1
+ import { IAuthenticateGeneric, ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow';
2
+ export declare class ByteplantEmailValidatorApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ authenticate: IAuthenticateGeneric;
8
+ test: ICredentialTestRequest;
9
+ }
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ByteplantEmailValidatorApi = void 0;
4
+ class ByteplantEmailValidatorApi {
5
+ constructor() {
6
+ this.name = 'byteplantEmailValidatorApi';
7
+ this.displayName = 'Byteplant Email Validator API';
8
+ this.documentationUrl = 'https://www.email-validator.net/api.html';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ description: "Your email-validator API key. If you don't already have one, go to [Email Validator website](https://www.email-validator.net/api.html) and register to receive an API key.",
15
+ typeOptions: {
16
+ password: true,
17
+ },
18
+ default: '',
19
+ },
20
+ ];
21
+ this.authenticate = {
22
+ type: 'generic',
23
+ properties: {
24
+ qs: {
25
+ APIKey: '={{ $credentials.apiKey }}',
26
+ },
27
+ },
28
+ };
29
+ this.test = {
30
+ request: {
31
+ baseURL: 'https://api.email-validator.net',
32
+ url: '/api/verify',
33
+ qs: {
34
+ EmailAddress: 'test',
35
+ },
36
+ },
37
+ rules: [
38
+ {
39
+ type: 'responseSuccessBody',
40
+ properties: {
41
+ key: 'status',
42
+ value: 'VALID',
43
+ message: 'API key is valid',
44
+ },
45
+ },
46
+ {
47
+ type: 'responseSuccessBody',
48
+ properties: {
49
+ key: 'status',
50
+ value: 'API_KEY_INVALID_OR_DEPLETED',
51
+ message: 'API key is invalid or depleted',
52
+ },
53
+ },
54
+ ],
55
+ };
56
+ }
57
+ }
58
+ exports.ByteplantEmailValidatorApi = ByteplantEmailValidatorApi;
59
+ //# sourceMappingURL=ByteplantEmailValidatorApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ByteplantEmailValidatorApi.credentials.js","sourceRoot":"","sources":["../../credentials/ByteplantEmailValidatorApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,0BAA0B;IAAvC;QACC,SAAI,GAAG,4BAA4B,CAAC;QACpC,gBAAW,GAAG,+BAA+B,CAAC;QAE9C,qBAAgB,GAAG,0CAA0C,CAAC;QAE9D,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACV,4KAA4K;gBAC7K,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,EAAE,EAAE;oBACH,MAAM,EAAE,4BAA4B;iBACpC;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,iCAAiC;gBAC1C,GAAG,EAAE,aAAa;gBAClB,EAAE,EAAE;oBACH,YAAY,EAAE,MAAM;iBACpB;aACD;YACD,KAAK,EAAE;gBACN;oBACC,IAAI,EAAE,qBAAqB;oBAC3B,UAAU,EAAE;wBACX,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,OAAO;wBACd,OAAO,EAAE,kBAAkB;qBAC3B;iBACD;gBACD;oBACC,IAAI,EAAE,qBAAqB;oBAC3B,UAAU,EAAE;wBACX,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,6BAA6B;wBACpC,OAAO,EAAE,gCAAgC;qBACzC;iBACD;aACD;SACD,CAAC;IACH,CAAC;CAAA;AAxDD,gEAwDC"}
@@ -0,0 +1,9 @@
1
+ import { IAuthenticateGeneric, ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow';
2
+ export declare class ByteplantPhoneValidatorApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ authenticate: IAuthenticateGeneric;
8
+ test: ICredentialTestRequest;
9
+ }
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ByteplantPhoneValidatorApi = void 0;
4
+ class ByteplantPhoneValidatorApi {
5
+ constructor() {
6
+ this.name = 'byteplantPhoneValidatorApi';
7
+ this.displayName = 'Byteplant Phone Validator API';
8
+ this.documentationUrl = 'https://www.phone-validator.net/api.html';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ description: "Your phone-validator API key. If you don't already have one, go to [Phone Validator website](https://www.phone-validator.net/api.html) and register to receive an API key.",
15
+ typeOptions: {
16
+ password: true,
17
+ },
18
+ default: '',
19
+ },
20
+ ];
21
+ this.authenticate = {
22
+ type: 'generic',
23
+ properties: {
24
+ qs: {
25
+ APIKey: '={{ $credentials.apiKey }}',
26
+ },
27
+ },
28
+ };
29
+ this.test = {
30
+ request: {
31
+ baseURL: 'https://api.phone-validator.net',
32
+ url: '/api/v2/verify',
33
+ qs: {
34
+ PhoneNumber: 'test',
35
+ },
36
+ },
37
+ rules: [
38
+ {
39
+ type: 'responseSuccessBody',
40
+ properties: {
41
+ key: 'status',
42
+ value: 'VALID',
43
+ message: 'API key is valid',
44
+ },
45
+ },
46
+ {
47
+ type: 'responseSuccessBody',
48
+ properties: {
49
+ key: 'status',
50
+ value: 'API_KEY_INVALID_OR_DEPLETED',
51
+ message: 'API key is invalid or depleted',
52
+ },
53
+ },
54
+ ],
55
+ };
56
+ }
57
+ }
58
+ exports.ByteplantPhoneValidatorApi = ByteplantPhoneValidatorApi;
59
+ //# sourceMappingURL=ByteplantPhoneValidatorApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ByteplantPhoneValidatorApi.credentials.js","sourceRoot":"","sources":["../../credentials/ByteplantPhoneValidatorApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,0BAA0B;IAAvC;QACC,SAAI,GAAG,4BAA4B,CAAC;QACpC,gBAAW,GAAG,+BAA+B,CAAC;QAG9C,qBAAgB,GAAG,0CAA0C,CAAC;QAE9D,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACV,4KAA4K;gBAC7K,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,EAAE,EAAE;oBACH,MAAM,EAAE,4BAA4B;iBACpC;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,iCAAiC;gBAC1C,GAAG,EAAE,gBAAgB;gBACrB,EAAE,EAAE;oBACH,WAAW,EAAE,MAAM;iBACnB;aACD;YACD,KAAK,EAAE;gBACN;oBACC,IAAI,EAAE,qBAAqB;oBAC3B,UAAU,EAAE;wBACX,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,OAAO;wBACd,OAAO,EAAE,kBAAkB;qBAC3B;iBACD;gBACD;oBACC,IAAI,EAAE,qBAAqB;oBAC3B,UAAU,EAAE;wBACX,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,6BAA6B;wBACpC,OAAO,EAAE,gCAAgC;qBACzC;iBACD;aACD;SACD,CAAC;IACH,CAAC;CAAA;AAzDD,gEAyDC"}
@@ -0,0 +1,5 @@
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class ByteplantAddressValidator implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,155 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ByteplantAddressValidator = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ class ByteplantAddressValidator {
6
+ constructor() {
7
+ this.description = {
8
+ displayName: 'Byteplant Address Validator',
9
+ name: 'byteplantAddressValidator',
10
+ group: [],
11
+ icon: {
12
+ light: 'file:byteplant-address-validator.png',
13
+ dark: 'file:byteplant-address-validator.png',
14
+ },
15
+ version: 1,
16
+ description: 'Byteplant Address Validator',
17
+ defaults: {
18
+ name: 'Byteplant Address Validator',
19
+ },
20
+ inputs: ["main"],
21
+ outputs: ["main"],
22
+ credentials: [
23
+ {
24
+ displayName: 'Byteplant Address Validator API',
25
+ name: 'byteplantAddressValidatorApi',
26
+ required: true,
27
+ },
28
+ ],
29
+ usableAsTool: true,
30
+ properties: [
31
+ {
32
+ displayName: 'Street Address',
33
+ name: 'StreetAddress',
34
+ default: '',
35
+ placeholder: '',
36
+ type: 'string',
37
+ required: true,
38
+ },
39
+ {
40
+ displayName: 'City',
41
+ name: 'City',
42
+ default: '',
43
+ placeholder: '',
44
+ type: 'string',
45
+ required: true,
46
+ },
47
+ {
48
+ displayName: 'Additional Address Info',
49
+ name: 'AdditionalAddressInfo',
50
+ default: '',
51
+ placeholder: '',
52
+ type: 'string',
53
+ description: 'Apt/Suite/Additional address info',
54
+ },
55
+ {
56
+ displayName: 'Postal Code',
57
+ name: 'PostalCode',
58
+ default: '',
59
+ placeholder: '',
60
+ type: 'string',
61
+ description: 'Zip/Postal code',
62
+ },
63
+ {
64
+ displayName: 'State',
65
+ name: 'State',
66
+ default: '',
67
+ placeholder: '',
68
+ type: 'string',
69
+ description: 'State/Province',
70
+ },
71
+ {
72
+ displayName: 'Country Code',
73
+ name: 'CountryCode',
74
+ default: '',
75
+ placeholder: '',
76
+ type: 'string',
77
+ description: 'Two-letter ISO 3166-1 country code',
78
+ },
79
+ {
80
+ displayName: 'Locale',
81
+ name: 'Locale',
82
+ default: '',
83
+ placeholder: '',
84
+ type: 'string',
85
+ description: "IETF language tag - for some countries, only English and the preferred local language used by the country's postal service is supported",
86
+ },
87
+ {
88
+ displayName: 'Output Charset',
89
+ name: 'OutputCharset',
90
+ default: 'utf-8',
91
+ type: 'options',
92
+ options: [
93
+ {
94
+ name: 'us-ascii',
95
+ value: 'us-ascii',
96
+ },
97
+ {
98
+ name: 'utf-8',
99
+ value: 'utf-8',
100
+ },
101
+ ],
102
+ description: 'Output character set [us-ascii|utf-8]',
103
+ },
104
+ ],
105
+ };
106
+ }
107
+ async execute() {
108
+ const items = this.getInputData();
109
+ let item;
110
+ for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
111
+ try {
112
+ const options = {
113
+ method: 'GET',
114
+ baseURL: 'https://api.address-validator.net',
115
+ url: '/api/verify',
116
+ qs: {
117
+ StreetAddress: this.getNodeParameter('StreetAddress', itemIndex, ''),
118
+ City: this.getNodeParameter('City', itemIndex, ''),
119
+ AdditionalAddressInfo: this.getNodeParameter('AdditionalAddressInfo', itemIndex, ''),
120
+ PostalCode: this.getNodeParameter('PostalCode', itemIndex, ''),
121
+ State: this.getNodeParameter('State', itemIndex, ''),
122
+ CountryCode: this.getNodeParameter('CountryCode', itemIndex, ''),
123
+ Locale: this.getNodeParameter('Locale', itemIndex, ''),
124
+ OutputCharset: this.getNodeParameter('OutputCharset', itemIndex, ''),
125
+ },
126
+ };
127
+ const result = await this.helpers.requestWithAuthentication.call(this, 'byteplantAddressValidatorApi', options);
128
+ const json = JSON.parse(result);
129
+ if (json.status === 'API_KEY_INVALID_OR_DEPLETED') {
130
+ throw new n8n_workflow_1.ApplicationError('API Key Invalid or Depleted');
131
+ }
132
+ const data = Object.fromEntries(Object.entries(json).filter(([key]) => !['ratelimit_remain', 'ratelimit_seconds'].includes(key)));
133
+ item = items[itemIndex];
134
+ item.json = data;
135
+ }
136
+ catch (error) {
137
+ if (this.continueOnFail()) {
138
+ items.push({ json: this.getInputData(itemIndex)[0].json, error, pairedItem: itemIndex });
139
+ }
140
+ else {
141
+ if (error.context) {
142
+ error.context.itemIndex = itemIndex;
143
+ throw error;
144
+ }
145
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, {
146
+ itemIndex,
147
+ });
148
+ }
149
+ }
150
+ }
151
+ return [items];
152
+ }
153
+ }
154
+ exports.ByteplantAddressValidator = ByteplantAddressValidator;
155
+ //# sourceMappingURL=ByteplantAddressValidator.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ByteplantAddressValidator.node.js","sourceRoot":"","sources":["../../../nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-base.byteplant-address-validator",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["CRM"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://www.address-validator.net/api.html"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://www.address-validator.net/api.html"
15
+ }
16
+ ]
17
+ }
18
+ }
@@ -0,0 +1,5 @@
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class ByteplantEmailValidator implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ByteplantEmailValidator = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ class ByteplantEmailValidator {
6
+ constructor() {
7
+ this.description = {
8
+ displayName: 'Byteplant Email Validator',
9
+ name: 'byteplantEmailValidator',
10
+ group: [],
11
+ icon: {
12
+ light: 'file:byteplant-email-validator.png',
13
+ dark: 'file:byteplant-email-validator.png',
14
+ },
15
+ version: 1,
16
+ description: 'Byteplant Email Validator',
17
+ defaults: {
18
+ name: 'Byteplant Email Validator',
19
+ },
20
+ inputs: ["main"],
21
+ outputs: ["main"],
22
+ credentials: [
23
+ {
24
+ displayName: 'Byteplant Email Validator API',
25
+ name: 'byteplantEmailValidatorApi',
26
+ required: true,
27
+ },
28
+ ],
29
+ usableAsTool: true,
30
+ properties: [
31
+ {
32
+ displayName: 'Email Address',
33
+ name: 'EmailAddress',
34
+ type: 'string',
35
+ default: '',
36
+ placeholder: '',
37
+ description: 'Email address to validate',
38
+ required: true,
39
+ },
40
+ ],
41
+ };
42
+ }
43
+ async execute() {
44
+ const items = this.getInputData();
45
+ let item;
46
+ for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
47
+ try {
48
+ const options = {
49
+ method: 'GET',
50
+ baseURL: 'https://api.email-validator.net',
51
+ url: '/api/verify',
52
+ qs: {
53
+ EmailAddress: this.getNodeParameter('EmailAddress', itemIndex, ''),
54
+ },
55
+ };
56
+ const result = await this.helpers.requestWithAuthentication.call(this, 'byteplantEmailValidatorApi', options);
57
+ const json = JSON.parse(result);
58
+ if (json.status === 'API_KEY_INVALID_OR_DEPLETED') {
59
+ throw new n8n_workflow_1.ApplicationError('API Key Invalid or Depleted');
60
+ }
61
+ const data = Object.fromEntries(Object.entries(json).filter(([key]) => !['ratelimit_remain', 'ratelimit_seconds'].includes(key)));
62
+ item = items[itemIndex];
63
+ item.json = data;
64
+ }
65
+ catch (error) {
66
+ if (this.continueOnFail()) {
67
+ items.push({ json: this.getInputData(itemIndex)[0].json, error, pairedItem: itemIndex });
68
+ }
69
+ else {
70
+ if (error.context) {
71
+ error.context.itemIndex = itemIndex;
72
+ throw error;
73
+ }
74
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, {
75
+ itemIndex,
76
+ });
77
+ }
78
+ }
79
+ }
80
+ return [items];
81
+ }
82
+ }
83
+ exports.ByteplantEmailValidator = ByteplantEmailValidator;
84
+ //# sourceMappingURL=ByteplantEmailValidator.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ByteplantEmailValidator.node.js","sourceRoot":"","sources":["../../../nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-base.byteplant-email-validator",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["CRM"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://www.email-validator.net/api.html"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://www.email-validator.net/api.html"
15
+ }
16
+ ]
17
+ }
18
+ }
@@ -0,0 +1,5 @@
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class ByteplantPhoneValidator implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,119 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ByteplantPhoneValidator = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ class ByteplantPhoneValidator {
6
+ constructor() {
7
+ this.description = {
8
+ displayName: 'Byteplant Phone Validator',
9
+ name: 'byteplantPhoneValidator',
10
+ group: [],
11
+ icon: {
12
+ light: 'file:byteplant-phone-validator.png',
13
+ dark: 'file:byteplant-phone-validator.png',
14
+ },
15
+ version: 1,
16
+ description: 'Byteplant Phone Validator',
17
+ defaults: {
18
+ name: 'Byteplant Phone Validator',
19
+ },
20
+ inputs: ["main"],
21
+ outputs: ["main"],
22
+ credentials: [
23
+ {
24
+ displayName: 'Byteplant Phone Validator API',
25
+ name: 'byteplantPhoneValidatorApi',
26
+ required: true,
27
+ },
28
+ ],
29
+ usableAsTool: true,
30
+ properties: [
31
+ {
32
+ displayName: 'Phone Number',
33
+ name: 'PhoneNumber',
34
+ type: 'string',
35
+ default: '',
36
+ placeholder: '',
37
+ description: 'Phone number to validate',
38
+ required: true,
39
+ },
40
+ {
41
+ displayName: 'Country Code',
42
+ name: 'CountryCode',
43
+ type: 'string',
44
+ default: '',
45
+ placeholder: '',
46
+ description: 'Two letter ISO 3166-1 country code',
47
+ },
48
+ {
49
+ displayName: 'Locale',
50
+ name: 'Locale',
51
+ type: 'string',
52
+ default: 'en-US',
53
+ placeholder: '',
54
+ description: 'IETF language tag for Geocoding',
55
+ },
56
+ {
57
+ displayName: 'Mode',
58
+ name: 'Mode',
59
+ type: 'options',
60
+ default: 'extensive',
61
+ options: [
62
+ {
63
+ name: 'Extensive',
64
+ value: 'extensive',
65
+ },
66
+ {
67
+ name: 'Express',
68
+ value: 'express',
69
+ },
70
+ ],
71
+ },
72
+ ],
73
+ };
74
+ }
75
+ async execute() {
76
+ const items = this.getInputData();
77
+ let item;
78
+ for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
79
+ try {
80
+ const options = {
81
+ method: 'GET',
82
+ baseURL: 'https://api.phone-validator.net',
83
+ url: '/api/v2/verify',
84
+ qs: {
85
+ PhoneNumber: this.getNodeParameter('PhoneNumber', itemIndex, ''),
86
+ CountryCode: this.getNodeParameter('CountryCode', itemIndex, ''),
87
+ Locale: this.getNodeParameter('Locale', itemIndex, ''),
88
+ Mode: this.getNodeParameter('Mode', itemIndex, ''),
89
+ },
90
+ };
91
+ const result = await this.helpers.requestWithAuthentication.call(this, 'byteplantPhoneValidatorApi', options);
92
+ const json = JSON.parse(result);
93
+ if (json.status === 'API_KEY_INVALID_OR_DEPLETED') {
94
+ throw new n8n_workflow_1.ApplicationError('API Key Invalid or Depleted');
95
+ }
96
+ const data = Object.fromEntries(Object.entries(json).filter(([key]) => !['ratelimit_remain', 'ratelimit_seconds'].includes(key)));
97
+ item = items[itemIndex];
98
+ item.json = data;
99
+ }
100
+ catch (error) {
101
+ if (this.continueOnFail()) {
102
+ items.push({ json: this.getInputData(itemIndex)[0].json, error, pairedItem: itemIndex });
103
+ }
104
+ else {
105
+ if (error.context) {
106
+ error.context.itemIndex = itemIndex;
107
+ throw error;
108
+ }
109
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, {
110
+ itemIndex,
111
+ });
112
+ }
113
+ }
114
+ }
115
+ return [items];
116
+ }
117
+ }
118
+ exports.ByteplantPhoneValidator = ByteplantPhoneValidator;
119
+ //# sourceMappingURL=ByteplantPhoneValidator.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ByteplantPhoneValidator.node.js","sourceRoot":"","sources":["../../../nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-base.byteplant-phone-validator",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["CRM"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://www.phone-validator.net/api.html"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://www.phone-validator.net/api.html"
15
+ }
16
+ ]
17
+ }
18
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "n8n-nodes-byteplant",
3
+ "version": "0.0.1",
4
+ "description": "Validate addresses, phone numbers and email addresses - with unparalleled precision in 240+ countries world-wide.",
5
+ "keywords": [
6
+ "n8n",
7
+ "n8n-node",
8
+ "n8n-nodes",
9
+ "node",
10
+ "n8n-community-node-package",
11
+ "byteplant",
12
+ "validator",
13
+ "email-validator",
14
+ "address-validator",
15
+ "phone-validator"
16
+ ],
17
+ "license": "MIT",
18
+ "homepage": "https://www.byteplant.com/",
19
+ "author": {
20
+ "name": "Norapps LLC",
21
+ "email": "info@norapps.net"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/ikbelkirasan/n8n-nodes-byteplant.git"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.15"
29
+ },
30
+ "main": "index.js",
31
+ "scripts": {
32
+ "build": "npx rimraf dist && tsc && gulp build:icons",
33
+ "dev": "tsc --watch",
34
+ "format": "prettier nodes credentials --write",
35
+ "lint": "eslint nodes credentials package.json",
36
+ "lintfix": "eslint nodes credentials package.json --fix",
37
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ],
42
+ "n8n": {
43
+ "n8nNodesApiVersion": 1,
44
+ "credentials": [
45
+ "dist/credentials/ByteplantAddressValidatorApi.credentials.js",
46
+ "dist/credentials/ByteplantEmailValidatorApi.credentials.js",
47
+ "dist/credentials/ByteplantPhoneValidatorApi.credentials.js"
48
+ ],
49
+ "nodes": [
50
+ "dist/nodes/ByteplantAddressValidator/ByteplantPhoneValidator.node.js",
51
+ "dist/nodes/ByteplantEmailValidator/ByteplantPhoneValidator.node.js",
52
+ "dist/nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.js"
53
+ ]
54
+ },
55
+ "devDependencies": {
56
+ "@typescript-eslint/parser": "~8.32.0",
57
+ "eslint": "^8.57.0",
58
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
59
+ "gulp": "^5.0.0",
60
+ "n8n-workflow": "*",
61
+ "prettier": "^3.5.3",
62
+ "typescript": "^5.8.2"
63
+ },
64
+ "peerDependencies": {
65
+ "n8n-workflow": "*"
66
+ }
67
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/Constants.d.ts","../node_modules/n8n-workflow/dist/DeferredPromise.d.ts","../node_modules/n8n-workflow/dist/errors/error.types.d.ts","../node_modules/n8n-workflow/dist/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/ExecutionStatus.d.ts","../node_modules/n8n-workflow/dist/result.d.ts","../node_modules/n8n-workflow/dist/Expression.d.ts","../node_modules/n8n-workflow/dist/Workflow.d.ts","../node_modules/n8n-workflow/dist/WorkflowDataProxyEnvProvider.d.ts","../node_modules/n8n-workflow/dist/Interfaces.d.ts","../node_modules/n8n-workflow/dist/LoggerProxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedTypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/ExpressionSplitter.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/namedTypes.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/main.d.ts","../node_modules/@n8n/tournament/dist/ast.d.ts","../node_modules/@n8n/tournament/dist/ExpressionBuilder.d.ts","../node_modules/@n8n/tournament/dist/Evaluator.d.ts","../node_modules/@n8n/tournament/dist/Analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/ExpressionEvaluatorProxy.d.ts","../node_modules/n8n-workflow/dist/NodeHelpers.d.ts","../node_modules/n8n-workflow/dist/ObservableObject.d.ts","../node_modules/n8n-workflow/dist/TelemetryHelpers.d.ts","../node_modules/n8n-workflow/dist/Cron.d.ts","../node_modules/n8n-workflow/dist/GlobalState.d.ts","../node_modules/n8n-workflow/dist/MessageEventBus.d.ts","../node_modules/zod/lib/helpers/typeAliases.d.ts","../node_modules/zod/lib/helpers/util.d.ts","../node_modules/zod/lib/ZodError.d.ts","../node_modules/zod/lib/locales/en.d.ts","../node_modules/zod/lib/errors.d.ts","../node_modules/zod/lib/helpers/parseUtil.d.ts","../node_modules/zod/lib/helpers/enumUtil.d.ts","../node_modules/zod/lib/helpers/errorUtil.d.ts","../node_modules/zod/lib/helpers/partialUtil.d.ts","../node_modules/zod/lib/standard-schema.d.ts","../node_modules/zod/lib/types.d.ts","../node_modules/zod/lib/external.d.ts","../node_modules/zod/lib/index.d.ts","../node_modules/zod/index.d.ts","../node_modules/n8n-workflow/dist/FromAIParseUtils.d.ts","../node_modules/n8n-workflow/dist/MetadataUtils.d.ts","../node_modules/n8n-workflow/dist/WorkflowDataProxy.d.ts","../node_modules/n8n-workflow/dist/VersionedNodeType.d.ts","../node_modules/n8n-workflow/dist/TypeValidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/Extensions/Extensions.d.ts","../node_modules/n8n-workflow/dist/Extensions/ExpressionExtension.d.ts","../node_modules/n8n-workflow/dist/Extensions/index.d.ts","../node_modules/n8n-workflow/dist/Extensions/ExpressionParser.d.ts","../node_modules/n8n-workflow/dist/NativeMethods/index.d.ts","../node_modules/n8n-workflow/dist/NodeParameters/FilterParameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/ByteplantAddressValidatorApi.credentials.ts","../credentials/ByteplantEmailValidatorApi.credentials.ts","../credentials/ByteplantPhoneValidatorApi.credentials.ts","../nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.ts","../nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.ts","../nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.ts","../nodes/ByteplantAddressValidator/ByteplantAddressValidator.node.json","../nodes/ByteplantEmailValidator/ByteplantEmailValidator.node.json","../nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[148],[110],[113],[97,98,109],[97,108],[109,110,111,112],[99,100],[99],[100,102],[99,105,106],[99,101,102,103,105,106,107],[102,103,104],[102,105,107],[102],[102,105],[99,101],[83],[94],[93,94,95,96],[84,85],[84],[83,85,87],[84,90,91],[83,87,88,89],[83,87,90,92],[83,87],[83,90],[83,84,86],[83,84,86,87,88,90,91,92],[160,199],[160,184,199],[199],[160],[160,185,199],[160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[185,199],[81],[79,81],[81,113],[142],[142,143],[134],[48,49,50,51,59,62,63,65,68,75,76,77,79,80],[57,81],[78,81],[79,80,81],[52,57,81],[58,81],[52],[53],[69],[57],[58],[59],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],[52,61,81],[61,62,81],[68],[65],[57,58,81],[50,51,75,76,77,78,79,80,81,82,114,115,116,117,118,119,120,135,136,137,138,139,140,141,144,145,146,147],[133],[121,122,133],[123,124],[121,122,123,125,126,131],[122,123],[132],[123],[121,122,123,126,127,128,129,130]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","impliedFormat":99},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"8093df4b6de7728cd3327b33ce2846cb808e3b738b55f380578ab47fb1a0a82f","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"b047c5f4612ebd6f142d2eda135939c6808ac082b2251a36e9e002b96f04ca18","impliedFormat":1},{"version":"816c068d57010d183fa4dce821e6552a912cb654cf9f0e840f49f0a0fb3d2157","impliedFormat":1},{"version":"5ca59af607163e4c0b2350019394132c6fd5d643ecc13d5d2692084c23eb74fc","impliedFormat":1},{"version":"ebc356c4f81035935ebddc0e1c7818038b78043d349d58e1042aa1c0579b5600","impliedFormat":1},{"version":"fc73b467be17d21f268b1dae8e63c269e8eba711d6d3faf3c5e525383ac5b461","impliedFormat":1},{"version":"4ba081d644e7e33dc2fa68f4bf7b963cbf9838092a10f0f7d5dcc98095012bfb","impliedFormat":1},{"version":"7c1d9666b46748a09c7c290f2cad37d32d0a395c4fc49357f0f7b32cd2dc7d97","impliedFormat":1},{"version":"054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","impliedFormat":1},{"version":"01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","impliedFormat":1},{"version":"cf53b1ef37bdf9eacfe04a5c0977793a87fbdd8d6893aa513075fa656c2f7638","impliedFormat":1},{"version":"bfccff2a7a1a17431408d48ec6ef5f54c42d1a1650b97e291c63de8b07333ccb","impliedFormat":1},{"version":"ab8790af6d4be130bd0faaba17d6a1d6394b21a643af03be4827fd7f8664caac","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"2f83df884805baffce941efa67d2e459f09d82ae5f03b35771eea7bb9875346b","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"0b8d5b22b236fff7e23f3a5d1ddeb80bee6630bd35b1bf1c3efae226f08a1c3d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"38e7ca4f87ae169831eee751ad1b043b672bc9f328c0d44ec5a1bed98756a0b4","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"124e0f6c51420174212b8d23f9a53d5d781d4777995164f1fb64957eac658ce7","impliedFormat":1},{"version":"c7da212302d6bfa21317461599d24e8077b34664b4ed409c4c02a3d5fe31efaf","impliedFormat":1},{"version":"bf070df468371021e0dd0ad9ab7918b3f94254044136bf711c7e0e855f75309e","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"191d027b3924d5046fbf118bae0987969b9e03eba478ad34d2572244720ddb3c","impliedFormat":1},{"version":"14f2edd0618d9adaf83d22b55155ec41faddac678b4d158c8380e4325c8b36b6","impliedFormat":1},{"version":"72c9243dfd255afefe50d511f215053083a79db363d12e7e394ba78462be9e1b","impliedFormat":1},{"version":"2fbcb6bb6ffd69437452ca3029458f3c81a92b72aa71922df931cc4d373fffc1","impliedFormat":1},{"version":"8515d09f98ff2e7251cc970e74af5a0790caa52abc02d412ae87cbc6e47239ca","impliedFormat":1},{"version":"6d5438d567004aa049a2cdcad7aa2c3d671c9e74a0209297935b12bc16c3cf38","impliedFormat":1},{"version":"e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","impliedFormat":1},{"version":"5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","impliedFormat":1},{"version":"02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","impliedFormat":1},{"version":"3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","impliedFormat":1},{"version":"826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","impliedFormat":1},{"version":"7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","impliedFormat":1},{"version":"f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","impliedFormat":1},{"version":"1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","impliedFormat":1},{"version":"6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","impliedFormat":1},{"version":"226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","impliedFormat":1},{"version":"13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","impliedFormat":1},{"version":"9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","impliedFormat":1},{"version":"e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","impliedFormat":1},{"version":"28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","impliedFormat":1},{"version":"1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","impliedFormat":1},{"version":"19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","impliedFormat":1},{"version":"e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","impliedFormat":1},{"version":"7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","impliedFormat":1},{"version":"8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","impliedFormat":1},{"version":"ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","impliedFormat":1},{"version":"53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","impliedFormat":1},{"version":"967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","impliedFormat":1},{"version":"144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","impliedFormat":1},{"version":"759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","impliedFormat":1},{"version":"1ff2be5eb8b9b508603019df9f851240e57360a9417e672bf4de9d3495833f81","impliedFormat":1},{"version":"8263aed8d77f5b9a10de995c8efd14ea0e5bc54e2b4525178b643f5b24f90f1d","impliedFormat":1},{"version":"a7e7df52af8795560306e4b354e6670d978c59a87dd78b81e58656890c5ed451","impliedFormat":1},{"version":"d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","impliedFormat":1},{"version":"7686d52e8cbd036b9ca265490c31e36945a52ef3a9e726523d36b02befec7331","impliedFormat":1},{"version":"0f55c8c4605355ddea9fdd104ea0cb089e6ce7f41165fdc72d08247665dba0d4","impliedFormat":1},{"version":"9cc46a5cf6e8b232bb86abfd0c0ed4e0fd25d95aa3d2930e4705b078d29e51ec","impliedFormat":1},{"version":"edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","impliedFormat":1},{"version":"edcb8d46132756662651f6a42656aaeced2e221d0929411fb0a62c906f9873dd","impliedFormat":1},{"version":"382d2239e60b72282adfeb672e22e6df4de3737ce7e5df2151823dab489496ba","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"a42e1c2eec0e747163afa705044664a39065215a8d66c930f8d43f118a9bc044","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","impliedFormat":1},{"version":"3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"0320c5b275beb43649be5a818dfa83a2586ae110ac5bbb2c5eb7184e1fe3ca60","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},{"version":"378e26daa6ec402b81f5aea1ab47262d4f8ad8966037c26be75e8185366d09a1","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"efb8488e3acac79cac5927eaa8069fffc1d37cc3b2c3213d0256e9e1be8276bc","impliedFormat":1},{"version":"951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","impliedFormat":1},{"version":"361547594eb0fdbb5316523e4668c26ec483de464f53c4a0f65bbca573abae3e","impliedFormat":1},{"version":"afcef07b51d43cdd4e1bc0b92a3d84734cded5f12d764af090666afefb5a3676","impliedFormat":1},{"version":"3f6f70c077ed8d600aa24d8c0e83ba0dd5d2c5300d524cd2181efd30c0a62c72","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"0ca63470234437191f454f7f66b5815d79b59ebc636faa1de1194d282563e431","impliedFormat":1},{"version":"6d3b514475ee51ab5e99e4fc82ffcd6191d40c19dd197a1743111e0757c6f9c6","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"716c6fce977a188f23ee5165e4179944a63e8620784a7054fc0dd81f6c348bb4","impliedFormat":1},{"version":"cf2324583854e9b5dd489e537e2d46375ffb66169fbd947dea112898210ed9ff","impliedFormat":1},{"version":"b4b08a04e1861c2494437fad74c5c71f38a2f3d3cdd51fba70fcb072f3337b58","impliedFormat":1},{"version":"b11118e04ccaf8667069ef770e88a297c3435ea4073ca34c414282de1cc296e1","signature":"a9d4fc1f3803cc50d2eb80491af887edf2455d27cc95d81fe507e76f2e4ff5b1"},{"version":"a34104225b2dbdb99a79a66ab596992a192e91143ca7894aebf22df010ca19c0","signature":"9af3475f4e0d18c2232a6c40878329832b328b1bc0d86f29b7afd1c2dc41e106"},{"version":"bcca9efda0b4667b0458565c7f47238a29a4194af46ef714157b0f9bc72f45a8","signature":"c66e17c2b91273cdfea310639753c65fabbfa15fa33f6a15c4894e924265f797"},{"version":"079219a15f8298dc1553ae7de46e0f88305e5338f1d5310f0b11cce39374935e","signature":"19228ba5952981bc8c6669336ad3e3241b83311b3fdb6d95dab153e23e0a3cd7"},{"version":"e722f91b6fb0d061ff61b8a6cbfc6af81a6e7636149fc1878eee77bd177ce388","signature":"9855fdf691e89622487169e1b26a724cd3eb25d9404c764a388580ff52c73d08"},{"version":"ceebcc12b0931e3c298146300e93e54fe103867f2e1b95d98704a3fdea532647","signature":"266f21b1ea1e274a480f0c4b2bb6b4aecedc2d8f998ec2dfeaa65c1ca9a0be58"},"e358ef09e833592c0fec2ce83685062d5e4f37c9904b49dad8884312609c79e8","c8c1c04ca1718e2e58c905d3bfcc790e44af59ea9311e8a5887872bace9b721b","31fb44f24c857382a727e1dabac83ef6a3457f943324322f928e8f1c5db6945e","09101606dee0b0b99bf6636c4acf58a1f429715340aaf1b7ed86801fe72793c0",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1}],"root":[[149,158]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[149,1],[150,1],[151,1],[112,2],[111,3],[110,4],[109,5],[113,6],[101,7],[100,8],[99,9],[107,10],[108,11],[105,12],[106,13],[103,14],[104,15],[102,16],[94,17],[95,18],[97,19],[86,20],[85,21],[84,22],[92,23],[90,24],[91,25],[88,26],[89,27],[87,28],[93,29],[184,30],[185,31],[160,32],[163,32],[182,30],[183,30],[173,30],[172,33],[170,30],[165,30],[178,30],[176,30],[180,30],[164,30],[177,30],[181,30],[166,30],[167,30],[179,30],[161,30],[168,30],[169,30],[171,30],[175,30],[186,34],[174,30],[162,30],[199,35],[193,34],[195,36],[194,34],[187,34],[188,34],[190,34],[192,34],[196,36],[197,36],[189,36],[191,36],[118,37],[78,38],[114,39],[143,40],[144,41],[135,42],[81,43],[82,37],[120,37],[136,1],[146,40],[115,38],[147,44],[116,37],[117,37],[139,37],[138,37],[79,45],[137,46],[58,47],[61,48],[53,49],[54,50],[55,50],[56,50],[70,51],[73,52],[60,53],[72,54],[59,53],[75,55],[62,56],[63,57],[64,53],[69,58],[71,47],[66,59],[65,60],[67,59],[68,48],[148,61],[141,37],[140,37],[134,62],[123,63],[125,64],[132,65],[126,66],[129,62],[133,67],[124,68],[131,69],[152,1],[153,1],[154,1]],"version":"5.9.2"}
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "n8n-nodes-byteplant",
3
+ "version": "0.0.1",
4
+ "description": "Validate addresses, phone numbers and email addresses - with unparalleled precision in 240+ countries world-wide.",
5
+ "keywords": [
6
+ "n8n",
7
+ "n8n-node",
8
+ "n8n-nodes",
9
+ "node",
10
+ "n8n-community-node-package",
11
+ "byteplant",
12
+ "validator",
13
+ "email-validator",
14
+ "address-validator",
15
+ "phone-validator"
16
+ ],
17
+ "license": "MIT",
18
+ "homepage": "https://www.byteplant.com/",
19
+ "author": {
20
+ "name": "Norapps LLC",
21
+ "email": "info@norapps.net"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/ikbelkirasan/n8n-nodes-byteplant.git"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.15"
29
+ },
30
+ "main": "index.js",
31
+ "scripts": {
32
+ "build": "npx rimraf dist && tsc && gulp build:icons",
33
+ "dev": "tsc --watch",
34
+ "format": "prettier nodes credentials --write",
35
+ "lint": "eslint nodes credentials package.json",
36
+ "lintfix": "eslint nodes credentials package.json --fix",
37
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ],
42
+ "n8n": {
43
+ "n8nNodesApiVersion": 1,
44
+ "credentials": [
45
+ "dist/credentials/ByteplantAddressValidatorApi.credentials.js",
46
+ "dist/credentials/ByteplantEmailValidatorApi.credentials.js",
47
+ "dist/credentials/ByteplantPhoneValidatorApi.credentials.js"
48
+ ],
49
+ "nodes": [
50
+ "dist/nodes/ByteplantAddressValidator/ByteplantPhoneValidator.node.js",
51
+ "dist/nodes/ByteplantEmailValidator/ByteplantPhoneValidator.node.js",
52
+ "dist/nodes/ByteplantPhoneValidator/ByteplantPhoneValidator.node.js"
53
+ ]
54
+ },
55
+ "devDependencies": {
56
+ "@typescript-eslint/parser": "~8.32.0",
57
+ "eslint": "^8.57.0",
58
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
59
+ "gulp": "^5.0.0",
60
+ "n8n-workflow": "*",
61
+ "prettier": "^3.5.3",
62
+ "typescript": "^5.8.2"
63
+ },
64
+ "peerDependencies": {
65
+ "n8n-workflow": "*"
66
+ }
67
+ }