From b1f747a24ff5dd610eb11b4513998402078d945e Mon Sep 17 00:00:00 2001 From: Lucas Caresia Date: Wed, 25 Jun 2025 09:10:36 -0300 Subject: [PATCH 1/3] Added actions --- .../ipstack/actions/ip-lookup/ip-lookup.mjs | 53 ++ components/ipstack/common/constants.mjs | 741 ++++++++++++++++++ components/ipstack/ipstack.app.mjs | 60 +- components/ipstack/package.json | 4 +- pnpm-lock.yaml | 18 +- 5 files changed, 858 insertions(+), 18 deletions(-) create mode 100644 components/ipstack/actions/ip-lookup/ip-lookup.mjs create mode 100644 components/ipstack/common/constants.mjs diff --git a/components/ipstack/actions/ip-lookup/ip-lookup.mjs b/components/ipstack/actions/ip-lookup/ip-lookup.mjs new file mode 100644 index 0000000000000..928899431a5db --- /dev/null +++ b/components/ipstack/actions/ip-lookup/ip-lookup.mjs @@ -0,0 +1,53 @@ +import app from "../../ipstack.app.mjs"; + +export default { + key: "ipstack-ip-lookup", + name: "IP Lookup", + description: "Look up single IPv4 or IPv6 addresses. [See the documentation](https://ipstack.com/documentation#standard)", + version: "0.0.1", + type: "action", + props: { + app, + ip: { + propDefinition: [ + app, + "ip", + ], + }, + hostname: { + propDefinition: [ + app, + "hostname", + ], + }, + security: { + propDefinition: [ + app, + "security", + ], + }, + language: { + propDefinition: [ + app, + "language", + ], + }, + }, + async run({ $ }) { + const response = await this.app.ipLookup({ + $, + ip: this.ip, + params: { + hostname: this.hostname + ? 1 + : 0, + security: this.security + ? 1 + : 0, + language: this.language, + }, + }); + $.export("$summary", "Successfully retrieved data for the IP " + this.ip); + return response; + }, +}; diff --git a/components/ipstack/common/constants.mjs b/components/ipstack/common/constants.mjs new file mode 100644 index 0000000000000..09b01eaa0e443 --- /dev/null +++ b/components/ipstack/common/constants.mjs @@ -0,0 +1,741 @@ +export default { + + LANGUAGE_OPTIONS: [ + { + value: "ab", + label: "Abkhazian", + }, + { + value: "aa", + label: "Afar", + }, + { + value: "af", + label: "Afrikaans", + }, + { + value: "ak", + label: "Akan", + }, + { + value: "sq", + label: "Albanian", + }, + { + value: "am", + label: "Amharic", + }, + { + value: "ar", + label: "Arabic", + }, + { + value: "an", + label: "Aragonese", + }, + { + value: "hy", + label: "Armenian", + }, + { + value: "as", + label: "Assamese", + }, + { + value: "av", + label: "Avaric", + }, + { + value: "ae", + label: "Avestan", + }, + { + value: "ay", + label: "Aymara", + }, + { + value: "az", + label: "Azerbaijani", + }, + { + value: "bm", + label: "Bambara", + }, + { + value: "ba", + label: "Bashkir", + }, + { + value: "eu", + label: "Basque", + }, + { + value: "be", + label: "Belarusian", + }, + { + value: "bn", + label: "Bengali", + }, + { + value: "bh", + label: "Bihari languages", + }, + { + value: "bi", + label: "Bislama", + }, + { + value: "bs", + label: "Bosnian", + }, + { + value: "br", + label: "Breton", + }, + { + value: "bg", + label: "Bulgarian", + }, + { + value: "my", + label: "Burmese", + }, + { + value: "ca", + label: "Catalan, Valencian", + }, + { + value: "km", + label: "Central Khmer", + }, + { + value: "ch", + label: "Chamorro", + }, + { + value: "ce", + label: "Chechen", + }, + { + value: "ny", + label: "Chichewa, Chewa, Nyanja", + }, + { + value: "zh", + label: "Chinese", + }, + { + value: "cu", + label: "Church Slavonic, Old Bulgarian, Old Church Slavonic", + }, + { + value: "cv", + label: "Chuvash", + }, + { + value: "kw", + label: "Cornish", + }, + { + value: "co", + label: "Corsican", + }, + { + value: "cr", + label: "Cree", + }, + { + value: "hr", + label: "Croatian", + }, + { + value: "cs", + label: "Czech", + }, + { + value: "da", + label: "Danish", + }, + { + value: "dv", + label: "Divehi, Dhivehi, Maldivian", + }, + { + value: "nl", + label: "Dutch, Flemish", + }, + { + value: "dz", + label: "Dzongkha", + }, + { + value: "en", + label: "English", + }, + { + value: "eo", + label: "Esperanto", + }, + { + value: "et", + label: "Estonian", + }, + { + value: "ee", + label: "Ewe", + }, + { + value: "fo", + label: "Faroese", + }, + { + value: "fj", + label: "Fijian", + }, + { + value: "fi", + label: "Finnish", + }, + { + value: "fr", + label: "French", + }, + { + value: "ff", + label: "Fulah", + }, + { + value: "gd", + label: "Gaelic, Scottish Gaelic", + }, + { + value: "gl", + label: "Galician", + }, + { + value: "lg", + label: "Ganda", + }, + { + value: "ka", + label: "Georgian", + }, + { + value: "de", + label: "German", + }, + { + value: "ki", + label: "Gikuyu, Kikuyu", + }, + { + value: "el", + label: "Greek (Modern)", + }, + { + value: "kl", + label: "Greenlandic, Kalaallisut", + }, + { + value: "gn", + label: "Guarani", + }, + { + value: "gu", + label: "Gujarati", + }, + { + value: "ht", + label: "Haitian, Haitian Creole", + }, + { + value: "ha", + label: "Hausa", + }, + { + value: "he", + label: "Hebrew", + }, + { + value: "hz", + label: "Herero", + }, + { + value: "hi", + label: "Hindi", + }, + { + value: "ho", + label: "Hiri Motu", + }, + { + value: "hu", + label: "Hungarian", + }, + { + value: "is", + label: "Icelandic", + }, + { + value: "io", + label: "Ido", + }, + { + value: "ig", + label: "Igbo", + }, + { + value: "id", + label: "Indonesian", + }, + { + value: "ia", + label: "Interlingua (International Auxiliary Language Association)", + }, + { + value: "ie", + label: "Interlingue", + }, + { + value: "iu", + label: "Inuktitut", + }, + { + value: "ik", + label: "Inupiaq", + }, + { + value: "ga", + label: "Irish", + }, + { + value: "it", + label: "Italian", + }, + { + value: "ja", + label: "Japanese", + }, + { + value: "jv", + label: "Javanese", + }, + { + value: "kn", + label: "Kannada", + }, + { + value: "kr", + label: "Kanuri", + }, + { + value: "ks", + label: "Kashmiri", + }, + { + value: "kk", + label: "Kazakh", + }, + { + value: "rw", + label: "Kinyarwanda", + }, + { + value: "kv", + label: "Komi", + }, + { + value: "kg", + label: "Kongo", + }, + { + value: "ko", + label: "Korean", + }, + { + value: "kj", + label: "Kwanyama, Kuanyama", + }, + { + value: "ku", + label: "Kurdish", + }, + { + value: "ky", + label: "Kyrgyz", + }, + { + value: "lo", + label: "Lao", + }, + { + value: "la", + label: "Latin", + }, + { + value: "lv", + label: "Latvian", + }, + { + value: "lb", + label: "Letzeburgesch, Luxembourgish", + }, + { + value: "li", + label: "Limburgish, Limburgan, Limburger", + }, + { + value: "ln", + label: "Lingala", + }, + { + value: "lt", + label: "Lithuanian", + }, + { + value: "lu", + label: "Luba-Katanga", + }, + { + value: "mk", + label: "Macedonian", + }, + { + value: "mg", + label: "Malagasy", + }, + { + value: "ms", + label: "Malay", + }, + { + value: "ml", + label: "Malayalam", + }, + { + value: "mt", + label: "Maltese", + }, + { + value: "gv", + label: "Manx", + }, + { + value: "mi", + label: "Maori", + }, + { + value: "mr", + label: "Marathi", + }, + { + value: "mh", + label: "Marshallese", + }, + { + value: "ro", + label: "Moldovan, Moldavian, Romanian", + }, + { + value: "mn", + label: "Mongolian", + }, + { + value: "na", + label: "Nauru", + }, + { + value: "nv", + label: "Navajo, Navaho", + }, + { + value: "nd", + label: "Northern Ndebele", + }, + { + value: "ng", + label: "Ndonga", + }, + { + value: "ne", + label: "Nepali", + }, + { + value: "se", + label: "Northern Sami", + }, + { + value: "no", + label: "Norwegian", + }, + { + value: "nb", + label: "Norwegian Bokmål", + }, + { + value: "nn", + label: "Norwegian Nynorsk", + }, + { + value: "ii", + label: "Nuosu, Sichuan Yi", + }, + { + value: "oc", + label: "Occitan (post 1500)", + }, + { + value: "oj", + label: "Ojibwa", + }, + { + value: "or", + label: "Oriya", + }, + { + value: "om", + label: "Oromo", + }, + { + value: "os", + label: "Ossetian, Ossetic", + }, + { + value: "pi", + label: "Pali", + }, + { + value: "pa", + label: "Panjabi, Punjabi", + }, + { + value: "ps", + label: "Pashto, Pushto", + }, + { + value: "fa", + label: "Persian", + }, + { + value: "pl", + label: "Polish", + }, + { + value: "pt", + label: "Portuguese", + }, + { + value: "qu", + label: "Quechua", + }, + { + value: "rm", + label: "Romansh", + }, + { + value: "rn", + label: "Rundi", + }, + { + value: "ru", + label: "Russian", + }, + { + value: "sm", + label: "Samoan", + }, + { + value: "sg", + label: "Sango", + }, + { + value: "sa", + label: "Sanskrit", + }, + { + value: "sc", + label: "Sardinian", + }, + { + value: "sr", + label: "Serbian", + }, + { + value: "sn", + label: "Shona", + }, + { + value: "sd", + label: "Sindhi", + }, + { + value: "si", + label: "Sinhala, Sinhalese", + }, + { + value: "sk", + label: "Slovak", + }, + { + value: "sl", + label: "Slovenian", + }, + { + value: "so", + label: "Somali", + }, + { + value: "st", + label: "Sotho, Southern", + }, + { + value: "nr", + label: "South Ndebele", + }, + { + value: "es", + label: "Spanish, Castilian", + }, + { + value: "su", + label: "Sundanese", + }, + { + value: "sw", + label: "Swahili", + }, + { + value: "ss", + label: "Swati", + }, + { + value: "sv", + label: "Swedish", + }, + { + value: "tl", + label: "Tagalog", + }, + { + value: "ty", + label: "Tahitian", + }, + { + value: "tg", + label: "Tajik", + }, + { + value: "ta", + label: "Tamil", + }, + { + value: "tt", + label: "Tatar", + }, + { + value: "te", + label: "Telugu", + }, + { + value: "th", + label: "Thai", + }, + { + value: "bo", + label: "Tibetan", + }, + { + value: "ti", + label: "Tigrinya", + }, + { + value: "to", + label: "Tonga (Tonga Islands)", + }, + { + value: "ts", + label: "Tsonga", + }, + { + value: "tn", + label: "Tswana", + }, + { + value: "tr", + label: "Turkish", + }, + { + value: "tk", + label: "Turkmen", + }, + { + value: "tw", + label: "Twi", + }, + { + value: "ug", + label: "Uighur, Uyghur", + }, + { + value: "uk", + label: "Ukrainian", + }, + { + value: "ur", + label: "Urdu", + }, + { + value: "uz", + label: "Uzbek", + }, + { + value: "ve", + label: "Venda", + }, + { + value: "vi", + label: "Vietlabelse", + }, + { + value: "vo", + label: "Volap_k", + }, + { + value: "wa", + label: "Walloon", + }, + { + value: "cy", + label: "Welsh", + }, + { + value: "fy", + label: "Western Frisian", + }, + { + value: "wo", + label: "Wolof", + }, + { + value: "xh", + label: "Xhosa", + }, + { + value: "yi", + label: "Yiddish", + }, + { + value: "yo", + label: "Yoruba", + }, + { + value: "za", + label: "Zhuang, Chuang", + }, + { + value: "zu", + label: "Zulu", + }, + ], +}; diff --git a/components/ipstack/ipstack.app.mjs b/components/ipstack/ipstack.app.mjs index 1fc13841d29a4..4b03dca10fafe 100644 --- a/components/ipstack/ipstack.app.mjs +++ b/components/ipstack/ipstack.app.mjs @@ -1,11 +1,63 @@ +import { axios } from "@pipedream/platform"; +import constants from "./common/constants.mjs"; + export default { type: "app", app: "ipstack", - propDefinitions: {}, + propDefinitions: { + ip: { + type: "string", + label: "IP", + description: "IPv4 or IPv6 address to be looked up", + }, + hostname: { + type: "boolean", + label: "Hostname", + description: "If set to 1, hostname lookup will be included in the API response", + optional: true, + }, + security: { + type: "boolean", + label: "Security", + description: "If set to 1, includes security module in the API response", + optional: true, + }, + language: { + type: "string", + label: "Language", + description: "Output language using 2-letter ISO 639-1 format", + optional: true, + options: constants.LANGUAGE_OPTIONS, + }, + }, methods: { - // this.$auth contains connected account data - authKeys() { - console.log(Object.keys(this.$auth)); + _baseUrl() { + return "http://api.ipstack.com"; + }, + async _makeRequest(opts = {}) { + const { + $ = this, + path, + params, + ...otherOpts + } = opts; + return axios($, { + ...otherOpts, + url: this._baseUrl() + path, + params: { + access_key: `${this.$auth.access_key}`, + ...params, + }, + }); + }, + + async ipLookup({ + ip, ...args + }) { + return this._makeRequest({ + path: `/${ip}`, + ...args, + }); }, }, }; diff --git a/components/ipstack/package.json b/components/ipstack/package.json index 2617bd1644127..9befa2b14222a 100644 --- a/components/ipstack/package.json +++ b/components/ipstack/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/ipstack", - "version": "0.0.1", + "version": "0.1.0", "description": "Pipedream ipstack Components", "main": "ipstack.app.mjs", "keywords": [ @@ -12,4 +12,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a2cba292c8f63..355bd5dd572fa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5392,8 +5392,7 @@ importers: components/godial: {} - components/goformz: - specifiers: {} + components/goformz: {} components/gohighlevel: dependencies: @@ -7284,8 +7283,7 @@ importers: specifier: ^3.0.0 version: 3.0.3 - components/lark: - specifiers: {} + components/lark: {} components/lastpass: dependencies: @@ -8490,8 +8488,7 @@ importers: components/mollie: {} - components/momentum_ams: - specifiers: {} + components/momentum_ams: {} components/monday: dependencies: @@ -9470,8 +9467,7 @@ importers: components/order_sender: {} - components/orderspace: - specifiers: {} + components/orderspace: {} components/originality_ai: dependencies: @@ -11548,8 +11544,7 @@ importers: components/ryver: {} - components/sage_accounting: - specifiers: {} + components/sage_accounting: {} components/sage_intacct: {} @@ -12966,8 +12961,7 @@ importers: components/stealthseminar: {} - components/stiply: - specifiers: {} + components/stiply: {} components/storeganise: dependencies: From fdb6d8dbb256c8681d8f3931c6aa0932e25c2ada Mon Sep 17 00:00:00 2001 From: Lucas Caresia Date: Mon, 30 Jun 2025 10:37:28 -0300 Subject: [PATCH 2/3] Added actions --- components/ipstack/common/constants.mjs | 5 ++--- components/ipstack/ipstack.app.mjs | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/components/ipstack/common/constants.mjs b/components/ipstack/common/constants.mjs index 09b01eaa0e443..d1d08715403f2 100644 --- a/components/ipstack/common/constants.mjs +++ b/components/ipstack/common/constants.mjs @@ -1,5 +1,4 @@ export default { - LANGUAGE_OPTIONS: [ { value: "ab", @@ -695,11 +694,11 @@ export default { }, { value: "vi", - label: "Vietlabelse", + label: "Vietnamese", }, { value: "vo", - label: "Volap_k", + label: "Volapük", }, { value: "wa", diff --git a/components/ipstack/ipstack.app.mjs b/components/ipstack/ipstack.app.mjs index 4b03dca10fafe..db33c4a10107e 100644 --- a/components/ipstack/ipstack.app.mjs +++ b/components/ipstack/ipstack.app.mjs @@ -13,13 +13,13 @@ export default { hostname: { type: "boolean", label: "Hostname", - description: "If set to 1, hostname lookup will be included in the API response", + description: "If set to `true`, hostname lookup will be included in the API response", optional: true, }, security: { type: "boolean", label: "Security", - description: "If set to 1, includes security module in the API response", + description: "If set to `true`, includes security module in the API response", optional: true, }, language: { @@ -32,7 +32,7 @@ export default { }, methods: { _baseUrl() { - return "http://api.ipstack.com"; + return "https://api.ipstack.com"; }, async _makeRequest(opts = {}) { const { From 1b834997c0d7149ccfb9d848b086d9cdfb2a8f39 Mon Sep 17 00:00:00 2001 From: Lucas Caresia Date: Thu, 3 Jul 2025 15:34:07 -0300 Subject: [PATCH 3/3] Added actions --- components/ipstack/common/constants.mjs | 723 +----------------------- components/ipstack/package.json | 3 + pnpm-lock.yaml | 18 +- 3 files changed, 22 insertions(+), 722 deletions(-) diff --git a/components/ipstack/common/constants.mjs b/components/ipstack/common/constants.mjs index d1d08715403f2..5b76f18c05cd8 100644 --- a/components/ipstack/common/constants.mjs +++ b/components/ipstack/common/constants.mjs @@ -1,740 +1,37 @@ export default { + LANGUAGE_OPTIONS: [ - { - value: "ab", - label: "Abkhazian", - }, - { - value: "aa", - label: "Afar", - }, - { - value: "af", - label: "Afrikaans", - }, - { - value: "ak", - label: "Akan", - }, - { - value: "sq", - label: "Albanian", - }, - { - value: "am", - label: "Amharic", - }, - { - value: "ar", - label: "Arabic", - }, - { - value: "an", - label: "Aragonese", - }, - { - value: "hy", - label: "Armenian", - }, - { - value: "as", - label: "Assamese", - }, - { - value: "av", - label: "Avaric", - }, - { - value: "ae", - label: "Avestan", - }, - { - value: "ay", - label: "Aymara", - }, - { - value: "az", - label: "Azerbaijani", - }, - { - value: "bm", - label: "Bambara", - }, - { - value: "ba", - label: "Bashkir", - }, - { - value: "eu", - label: "Basque", - }, - { - value: "be", - label: "Belarusian", - }, - { - value: "bn", - label: "Bengali", - }, - { - value: "bh", - label: "Bihari languages", - }, - { - value: "bi", - label: "Bislama", - }, - { - value: "bs", - label: "Bosnian", - }, - { - value: "br", - label: "Breton", - }, - { - value: "bg", - label: "Bulgarian", - }, - { - value: "my", - label: "Burmese", - }, - { - value: "ca", - label: "Catalan, Valencian", - }, - { - value: "km", - label: "Central Khmer", - }, - { - value: "ch", - label: "Chamorro", - }, - { - value: "ce", - label: "Chechen", - }, - { - value: "ny", - label: "Chichewa, Chewa, Nyanja", - }, - { - value: "zh", - label: "Chinese", - }, - { - value: "cu", - label: "Church Slavonic, Old Bulgarian, Old Church Slavonic", - }, - { - value: "cv", - label: "Chuvash", - }, - { - value: "kw", - label: "Cornish", - }, - { - value: "co", - label: "Corsican", - }, - { - value: "cr", - label: "Cree", - }, - { - value: "hr", - label: "Croatian", - }, - { - value: "cs", - label: "Czech", - }, - { - value: "da", - label: "Danish", - }, - { - value: "dv", - label: "Divehi, Dhivehi, Maldivian", - }, - { - value: "nl", - label: "Dutch, Flemish", - }, - { - value: "dz", - label: "Dzongkha", - }, { value: "en", - label: "English", - }, - { - value: "eo", - label: "Esperanto", - }, - { - value: "et", - label: "Estonian", - }, - { - value: "ee", - label: "Ewe", - }, - { - value: "fo", - label: "Faroese", - }, - { - value: "fj", - label: "Fijian", - }, - { - value: "fi", - label: "Finnish", - }, - { - value: "fr", - label: "French", - }, - { - value: "ff", - label: "Fulah", - }, - { - value: "gd", - label: "Gaelic, Scottish Gaelic", - }, - { - value: "gl", - label: "Galician", - }, - { - value: "lg", - label: "Ganda", - }, - { - value: "ka", - label: "Georgian", + label: "English/US", }, { value: "de", label: "German", }, { - value: "ki", - label: "Gikuyu, Kikuyu", - }, - { - value: "el", - label: "Greek (Modern)", - }, - { - value: "kl", - label: "Greenlandic, Kalaallisut", - }, - { - value: "gn", - label: "Guarani", - }, - { - value: "gu", - label: "Gujarati", - }, - { - value: "ht", - label: "Haitian, Haitian Creole", - }, - { - value: "ha", - label: "Hausa", - }, - { - value: "he", - label: "Hebrew", - }, - { - value: "hz", - label: "Herero", - }, - { - value: "hi", - label: "Hindi", - }, - { - value: "ho", - label: "Hiri Motu", - }, - { - value: "hu", - label: "Hungarian", - }, - { - value: "is", - label: "Icelandic", - }, - { - value: "io", - label: "Ido", - }, - { - value: "ig", - label: "Igbo", - }, - { - value: "id", - label: "Indonesian", - }, - { - value: "ia", - label: "Interlingua (International Auxiliary Language Association)", - }, - { - value: "ie", - label: "Interlingue", - }, - { - value: "iu", - label: "Inuktitut", - }, - { - value: "ik", - label: "Inupiaq", - }, - { - value: "ga", - label: "Irish", + value: "es", + label: "Spanish", }, { - value: "it", - label: "Italian", + value: "fr", + label: "French", }, { value: "ja", label: "Japanese", }, { - value: "jv", - label: "Javanese", - }, - { - value: "kn", - label: "Kannada", - }, - { - value: "kr", - label: "Kanuri", - }, - { - value: "ks", - label: "Kashmiri", - }, - { - value: "kk", - label: "Kazakh", - }, - { - value: "rw", - label: "Kinyarwanda", - }, - { - value: "kv", - label: "Komi", - }, - { - value: "kg", - label: "Kongo", - }, - { - value: "ko", - label: "Korean", - }, - { - value: "kj", - label: "Kwanyama, Kuanyama", - }, - { - value: "ku", - label: "Kurdish", - }, - { - value: "ky", - label: "Kyrgyz", - }, - { - value: "lo", - label: "Lao", - }, - { - value: "la", - label: "Latin", - }, - { - value: "lv", - label: "Latvian", - }, - { - value: "lb", - label: "Letzeburgesch, Luxembourgish", - }, - { - value: "li", - label: "Limburgish, Limburgan, Limburger", - }, - { - value: "ln", - label: "Lingala", - }, - { - value: "lt", - label: "Lithuanian", - }, - { - value: "lu", - label: "Luba-Katanga", - }, - { - value: "mk", - label: "Macedonian", - }, - { - value: "mg", - label: "Malagasy", - }, - { - value: "ms", - label: "Malay", - }, - { - value: "ml", - label: "Malayalam", - }, - { - value: "mt", - label: "Maltese", - }, - { - value: "gv", - label: "Manx", - }, - { - value: "mi", - label: "Maori", - }, - { - value: "mr", - label: "Marathi", - }, - { - value: "mh", - label: "Marshallese", - }, - { - value: "ro", - label: "Moldovan, Moldavian, Romanian", - }, - { - value: "mn", - label: "Mongolian", - }, - { - value: "na", - label: "Nauru", - }, - { - value: "nv", - label: "Navajo, Navaho", - }, - { - value: "nd", - label: "Northern Ndebele", - }, - { - value: "ng", - label: "Ndonga", - }, - { - value: "ne", - label: "Nepali", - }, - { - value: "se", - label: "Northern Sami", - }, - { - value: "no", - label: "Norwegian", - }, - { - value: "nb", - label: "Norwegian Bokmål", - }, - { - value: "nn", - label: "Norwegian Nynorsk", - }, - { - value: "ii", - label: "Nuosu, Sichuan Yi", - }, - { - value: "oc", - label: "Occitan (post 1500)", - }, - { - value: "oj", - label: "Ojibwa", - }, - { - value: "or", - label: "Oriya", - }, - { - value: "om", - label: "Oromo", - }, - { - value: "os", - label: "Ossetian, Ossetic", - }, - { - value: "pi", - label: "Pali", - }, - { - value: "pa", - label: "Panjabi, Punjabi", - }, - { - value: "ps", - label: "Pashto, Pushto", - }, - { - value: "fa", - label: "Persian", - }, - { - value: "pl", - label: "Polish", - }, - { - value: "pt", - label: "Portuguese", - }, - { - value: "qu", - label: "Quechua", - }, - { - value: "rm", - label: "Romansh", - }, - { - value: "rn", - label: "Rundi", + value: "pt-br", + label: "Portugues (Brazil)", }, { value: "ru", label: "Russian", }, { - value: "sm", - label: "Samoan", - }, - { - value: "sg", - label: "Sango", - }, - { - value: "sa", - label: "Sanskrit", - }, - { - value: "sc", - label: "Sardinian", - }, - { - value: "sr", - label: "Serbian", - }, - { - value: "sn", - label: "Shona", - }, - { - value: "sd", - label: "Sindhi", - }, - { - value: "si", - label: "Sinhala, Sinhalese", - }, - { - value: "sk", - label: "Slovak", - }, - { - value: "sl", - label: "Slovenian", - }, - { - value: "so", - label: "Somali", - }, - { - value: "st", - label: "Sotho, Southern", - }, - { - value: "nr", - label: "South Ndebele", - }, - { - value: "es", - label: "Spanish, Castilian", - }, - { - value: "su", - label: "Sundanese", - }, - { - value: "sw", - label: "Swahili", - }, - { - value: "ss", - label: "Swati", - }, - { - value: "sv", - label: "Swedish", - }, - { - value: "tl", - label: "Tagalog", - }, - { - value: "ty", - label: "Tahitian", - }, - { - value: "tg", - label: "Tajik", - }, - { - value: "ta", - label: "Tamil", - }, - { - value: "tt", - label: "Tatar", - }, - { - value: "te", - label: "Telugu", - }, - { - value: "th", - label: "Thai", - }, - { - value: "bo", - label: "Tibetan", - }, - { - value: "ti", - label: "Tigrinya", - }, - { - value: "to", - label: "Tonga (Tonga Islands)", - }, - { - value: "ts", - label: "Tsonga", - }, - { - value: "tn", - label: "Tswana", - }, - { - value: "tr", - label: "Turkish", - }, - { - value: "tk", - label: "Turkmen", - }, - { - value: "tw", - label: "Twi", - }, - { - value: "ug", - label: "Uighur, Uyghur", - }, - { - value: "uk", - label: "Ukrainian", - }, - { - value: "ur", - label: "Urdu", - }, - { - value: "uz", - label: "Uzbek", - }, - { - value: "ve", - label: "Venda", - }, - { - value: "vi", - label: "Vietnamese", - }, - { - value: "vo", - label: "Volapük", - }, - { - value: "wa", - label: "Walloon", - }, - { - value: "cy", - label: "Welsh", - }, - { - value: "fy", - label: "Western Frisian", - }, - { - value: "wo", - label: "Wolof", - }, - { - value: "xh", - label: "Xhosa", - }, - { - value: "yi", - label: "Yiddish", - }, - { - value: "yo", - label: "Yoruba", - }, - { - value: "za", - label: "Zhuang, Chuang", - }, - { - value: "zu", - label: "Zulu", + value: "zh", + label: "Chinese", }, ], }; diff --git a/components/ipstack/package.json b/components/ipstack/package.json index 9befa2b14222a..ce061714f1f13 100644 --- a/components/ipstack/package.json +++ b/components/ipstack/package.json @@ -11,5 +11,8 @@ "author": "Pipedream (https://pipedream.com/)", "publishConfig": { "access": "public" + }, + "dependencies": { + "@pipedream/platform": "^3.1.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eb83170b65cf8..1cb22bfd8f581 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1575,8 +1575,7 @@ importers: specifier: ^3.0.3 version: 3.0.3 - components/bitget: - specifiers: {} + components/bitget: {} components/bitly: dependencies: @@ -4429,8 +4428,7 @@ importers: specifier: ^6.11.0 version: 6.13.1 - components/explorium: - specifiers: {} + components/explorium: {} components/expofp: dependencies: @@ -6803,7 +6801,11 @@ importers: specifier: ^1.1.1 version: 1.6.6 - components/ipstack: {} + components/ipstack: + dependencies: + '@pipedream/platform': + specifier: ^3.1.0 + version: 3.1.0 components/iqair_airvisual: {} @@ -6908,8 +6910,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/joggai: - specifiers: {} + components/joggai: {} components/join: {} @@ -12360,8 +12361,7 @@ importers: specifier: 1.6.5 version: 1.6.5 - components/sign_plus: - specifiers: {} + components/sign_plus: {} components/signable: {}