Skip to content

Commit 15b82eb

Browse files
committed
changing the package name
1 parent b828f09 commit 15b82eb

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

credentials/SearchApi.credentials.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66

77
export class SearchApi implements ICredentialType {
88
name = 'searchApi';
9-
displayName = 'SearchAPI API';
9+
displayName = 'SearchApi API';
1010

1111
// Uses the link to this tutorial as an example
1212
// Replace with your own docs links when building your own nodes

examples/searchapi_chatbot/searchapi_chatbot.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
{
7171
"id": "73d024bd-aab3-491c-afc4-79194f4ac7fc",
72-
"name": "SearchAPI",
72+
"name": "SearchApi",
7373
"type": "CUSTOM.searchApiTool",
7474
"position": [
7575
260,
@@ -91,7 +91,7 @@
9191
"credentials": {
9292
"searchApi": {
9393
"id": "rTFvdffzP7fPVaVr",
94-
"name": "SearchAPI account"
94+
"name": "SearchApi account"
9595
}
9696
},
9797
"typeVersion": 1
@@ -107,7 +107,7 @@
107107
"parameters": {
108108
"color": 5,
109109
"width": 340,
110-
"content": "## SearchAPI AI Agent\nWhenever you ask a question that should be searched on the web, the AI Agent will use SearchAPI to do it. To run this workflow, you need to have the credentials for Searchapi.io and some LLM provider."
110+
"content": "## SearchApi AI Agent\nWhenever you ask a question that should be searched on the web, the AI Agent will use SearchApi to do it. To run this workflow, you need to have the credentials for Searchapi.io and some LLM provider."
111111
},
112112
"typeVersion": 1
113113
},
@@ -122,7 +122,7 @@
122122
"parameters": {
123123
"width": 260,
124124
"height": 120,
125-
"content": "## Tip\nYou can change the node to use any of the engines available on [SearchAPI.io](https://www.searchapi.io/)"
125+
"content": "## Tip\nYou can change the node to use any of the engines available on [SearchApi.io](https://www.searchapi.io/)"
126126
},
127127
"typeVersion": 1
128128
}
@@ -134,7 +134,7 @@
134134
},
135135
"versionId": "1f42e7e2-32ca-4ceb-8f1e-1de26f09d525",
136136
"connections": {
137-
"SearchAPI": {
137+
"SearchApi": {
138138
"ai_tool": [
139139
[
140140
{

examples/searchapi_youtube_transcripts/searchapi_youtube_transcripts.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
{
2222
"id": "3df790f2-4c6d-47d2-9b88-7967eb3bb78f",
23-
"name": "SearchAPI",
23+
"name": "SearchApi",
2424
"type": "CUSTOM.searchApi",
2525
"position": [
2626
60,
@@ -45,7 +45,7 @@
4545
"credentials": {
4646
"searchApi": {
4747
"id": "rTFvdffzP7fPVaVr",
48-
"name": "SearchAPI account"
48+
"name": "SearchApi account"
4949
}
5050
},
5151
"typeVersion": 1
@@ -171,7 +171,7 @@
171171
},
172172
"versionId": "bbfb7334-6f7b-4638-9efb-346b318fffee",
173173
"connections": {
174-
"SearchAPI": {
174+
"SearchApi": {
175175
"main": [
176176
[
177177
{
@@ -230,7 +230,7 @@
230230
"main": [
231231
[
232232
{
233-
"node": "SearchAPI",
233+
"node": "SearchApi",
234234
"type": "main",
235235
"index": 0
236236
}

nodes/SearchApi/SearchApi.node.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { IDataObject, INodeType, INodeTypeDescription } from 'n8n-workflow';
22

33
export class SearchApi implements INodeType {
44
description: INodeTypeDescription = {
5-
displayName: 'SearchAPI',
5+
displayName: 'SearchApi',
66
name: 'searchApi',
77
icon: 'file:searchApi.svg',
88
group: ['output'],
99
version: 1,
1010
description: 'Call this tool whenever the answer might require fresh, niche, or externally-verifiable information. Make sure to always cite the sources in the final reply. ',
1111
subtitle: '={{ $parameter["engine"] }}',
12-
defaults: { name: 'SearchAPI' },
12+
defaults: { name: 'SearchApi' },
1313
// @ts-ignore
1414
inputs: ['main'],
1515
// @ts-ignore

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@searchapi/n8n-nodes-searchapi",
33
"version": "1.0.0",
4-
"description": "SearchAPI.io nodes for n8n",
4+
"description": "SearchApi.io nodes for n8n",
55
"keywords": [
66
"n8n-community-node-package"
77
],
88
"license": "MIT",
99
"homepage": "https://www.searchapi.io",
1010
"author": {
11-
"name": "SearchAPI",
11+
"name": "SearchApi",
1212
"email": "[email protected]"
1313
},
1414
"repository": {

0 commit comments

Comments
 (0)