@verma-consulting/common-library 0.1.46 → 0.1.48
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.
- package/dist/index.d.mts +14 -3
- package/dist/index.d.ts +14 -3
- package/dist/index.js +47 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +47 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1322,12 +1322,17 @@ interface WaitlistInterface {
|
|
|
1322
1322
|
deletedAt?: Date;
|
|
1323
1323
|
claimed?: boolean;
|
|
1324
1324
|
userId?: string;
|
|
1325
|
+
contactId?: string;
|
|
1326
|
+
organizationId?: string;
|
|
1325
1327
|
email: string;
|
|
1326
1328
|
contents?: ContentInterface[];
|
|
1327
1329
|
createdById?: string;
|
|
1328
1330
|
updatedById?: string;
|
|
1329
1331
|
createdBy?: UserInterface;
|
|
1330
1332
|
updatedBy?: UserInterface;
|
|
1333
|
+
contact?: ContactInterface;
|
|
1334
|
+
organization?: OrganizationInterface;
|
|
1335
|
+
user?: UserInterface;
|
|
1331
1336
|
}
|
|
1332
1337
|
interface StripeCustomer {
|
|
1333
1338
|
name?: string;
|
|
@@ -2081,7 +2086,8 @@ declare enum chatType {
|
|
|
2081
2086
|
chat_gpt = "chat_gpt",
|
|
2082
2087
|
gemini = "gemini",
|
|
2083
2088
|
claude = "claude",
|
|
2084
|
-
deepseek = "deepseek"
|
|
2089
|
+
deepseek = "deepseek",
|
|
2090
|
+
co_pilot = "co_pilot"
|
|
2085
2091
|
}
|
|
2086
2092
|
declare enum integrationType {
|
|
2087
2093
|
stripe = "stripe",
|
|
@@ -2094,9 +2100,13 @@ declare enum integrationType {
|
|
|
2094
2100
|
gemini = "gemini",
|
|
2095
2101
|
claude = "claude",
|
|
2096
2102
|
deepseek = "deepseek",
|
|
2103
|
+
co_pilot = "co_pilot",
|
|
2097
2104
|
google_maps = "google_maps",
|
|
2098
2105
|
shippo = "shippo",
|
|
2099
|
-
shopify = "shopify"
|
|
2106
|
+
shopify = "shopify",
|
|
2107
|
+
tavily = "tavily",
|
|
2108
|
+
serp_api = "serp_api",
|
|
2109
|
+
bing_search = "bing_search"
|
|
2100
2110
|
}
|
|
2101
2111
|
declare enum integrationCategory {
|
|
2102
2112
|
Logistic = "Logistic",
|
|
@@ -2105,7 +2115,8 @@ declare enum integrationCategory {
|
|
|
2105
2115
|
Finances = "Finances",
|
|
2106
2116
|
OrganizationWorkspaces = "Organization Workspaces",
|
|
2107
2117
|
MessagingPlatforms = "Messaging Platforms",
|
|
2108
|
-
Miscellaneous = "Miscellaneous"
|
|
2118
|
+
Miscellaneous = "Miscellaneous",
|
|
2119
|
+
Search = "Search"
|
|
2109
2120
|
}
|
|
2110
2121
|
declare enum currency {
|
|
2111
2122
|
usd = "usd",
|
package/dist/index.d.ts
CHANGED
|
@@ -1322,12 +1322,17 @@ interface WaitlistInterface {
|
|
|
1322
1322
|
deletedAt?: Date;
|
|
1323
1323
|
claimed?: boolean;
|
|
1324
1324
|
userId?: string;
|
|
1325
|
+
contactId?: string;
|
|
1326
|
+
organizationId?: string;
|
|
1325
1327
|
email: string;
|
|
1326
1328
|
contents?: ContentInterface[];
|
|
1327
1329
|
createdById?: string;
|
|
1328
1330
|
updatedById?: string;
|
|
1329
1331
|
createdBy?: UserInterface;
|
|
1330
1332
|
updatedBy?: UserInterface;
|
|
1333
|
+
contact?: ContactInterface;
|
|
1334
|
+
organization?: OrganizationInterface;
|
|
1335
|
+
user?: UserInterface;
|
|
1331
1336
|
}
|
|
1332
1337
|
interface StripeCustomer {
|
|
1333
1338
|
name?: string;
|
|
@@ -2081,7 +2086,8 @@ declare enum chatType {
|
|
|
2081
2086
|
chat_gpt = "chat_gpt",
|
|
2082
2087
|
gemini = "gemini",
|
|
2083
2088
|
claude = "claude",
|
|
2084
|
-
deepseek = "deepseek"
|
|
2089
|
+
deepseek = "deepseek",
|
|
2090
|
+
co_pilot = "co_pilot"
|
|
2085
2091
|
}
|
|
2086
2092
|
declare enum integrationType {
|
|
2087
2093
|
stripe = "stripe",
|
|
@@ -2094,9 +2100,13 @@ declare enum integrationType {
|
|
|
2094
2100
|
gemini = "gemini",
|
|
2095
2101
|
claude = "claude",
|
|
2096
2102
|
deepseek = "deepseek",
|
|
2103
|
+
co_pilot = "co_pilot",
|
|
2097
2104
|
google_maps = "google_maps",
|
|
2098
2105
|
shippo = "shippo",
|
|
2099
|
-
shopify = "shopify"
|
|
2106
|
+
shopify = "shopify",
|
|
2107
|
+
tavily = "tavily",
|
|
2108
|
+
serp_api = "serp_api",
|
|
2109
|
+
bing_search = "bing_search"
|
|
2100
2110
|
}
|
|
2101
2111
|
declare enum integrationCategory {
|
|
2102
2112
|
Logistic = "Logistic",
|
|
@@ -2105,7 +2115,8 @@ declare enum integrationCategory {
|
|
|
2105
2115
|
Finances = "Finances",
|
|
2106
2116
|
OrganizationWorkspaces = "Organization Workspaces",
|
|
2107
2117
|
MessagingPlatforms = "Messaging Platforms",
|
|
2108
|
-
Miscellaneous = "Miscellaneous"
|
|
2118
|
+
Miscellaneous = "Miscellaneous",
|
|
2119
|
+
Search = "Search"
|
|
2109
2120
|
}
|
|
2110
2121
|
declare enum currency {
|
|
2111
2122
|
usd = "usd",
|
package/dist/index.js
CHANGED
|
@@ -844,6 +844,7 @@ var chatType = /* @__PURE__ */ ((chatType2) => {
|
|
|
844
844
|
chatType2["gemini"] = "gemini";
|
|
845
845
|
chatType2["claude"] = "claude";
|
|
846
846
|
chatType2["deepseek"] = "deepseek";
|
|
847
|
+
chatType2["co_pilot"] = "co_pilot";
|
|
847
848
|
return chatType2;
|
|
848
849
|
})(chatType || {});
|
|
849
850
|
var integrationType = /* @__PURE__ */ ((integrationType2) => {
|
|
@@ -857,9 +858,13 @@ var integrationType = /* @__PURE__ */ ((integrationType2) => {
|
|
|
857
858
|
integrationType2["gemini"] = "gemini";
|
|
858
859
|
integrationType2["claude"] = "claude";
|
|
859
860
|
integrationType2["deepseek"] = "deepseek";
|
|
861
|
+
integrationType2["co_pilot"] = "co_pilot";
|
|
860
862
|
integrationType2["google_maps"] = "google_maps";
|
|
861
863
|
integrationType2["shippo"] = "shippo";
|
|
862
864
|
integrationType2["shopify"] = "shopify";
|
|
865
|
+
integrationType2["tavily"] = "tavily";
|
|
866
|
+
integrationType2["serp_api"] = "serp_api";
|
|
867
|
+
integrationType2["bing_search"] = "bing_search";
|
|
863
868
|
return integrationType2;
|
|
864
869
|
})(integrationType || {});
|
|
865
870
|
var integrationCategory = /* @__PURE__ */ ((integrationCategory2) => {
|
|
@@ -870,6 +875,7 @@ var integrationCategory = /* @__PURE__ */ ((integrationCategory2) => {
|
|
|
870
875
|
integrationCategory2["OrganizationWorkspaces"] = "Organization Workspaces";
|
|
871
876
|
integrationCategory2["MessagingPlatforms"] = "Messaging Platforms";
|
|
872
877
|
integrationCategory2["Miscellaneous"] = "Miscellaneous";
|
|
878
|
+
integrationCategory2["Search"] = "Search";
|
|
873
879
|
return integrationCategory2;
|
|
874
880
|
})(integrationCategory || {});
|
|
875
881
|
var currency = /* @__PURE__ */ ((currency2) => {
|
|
@@ -2087,6 +2093,15 @@ var constants = {
|
|
|
2087
2093
|
title: "Integrate DeepSeek to your platform",
|
|
2088
2094
|
logo: "img/integrations/deepseek.png",
|
|
2089
2095
|
new: true
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
name: "Co-Pilot",
|
|
2099
|
+
category: "AI",
|
|
2100
|
+
type: "co_pilot",
|
|
2101
|
+
description: "Co-Pilot is an AI assistant that helps you code, search, and get answers across your development workflow.",
|
|
2102
|
+
title: "Integrate Co-Pilot to your platform",
|
|
2103
|
+
logo: "img/integrations/co_pilot.png",
|
|
2104
|
+
new: true
|
|
2090
2105
|
}
|
|
2091
2106
|
]
|
|
2092
2107
|
},
|
|
@@ -2127,6 +2142,38 @@ var constants = {
|
|
|
2127
2142
|
}
|
|
2128
2143
|
]
|
|
2129
2144
|
},
|
|
2145
|
+
{
|
|
2146
|
+
name: "Search",
|
|
2147
|
+
list: [
|
|
2148
|
+
{
|
|
2149
|
+
name: "Tavily",
|
|
2150
|
+
category: "Search",
|
|
2151
|
+
type: "tavily",
|
|
2152
|
+
description: "Tavily is an AI-powered search API designed for developers building intelligent applications. It provides accurate, real-time web search results optimized for LLMs and AI agents, enabling your platform to access up-to-date information from the web.",
|
|
2153
|
+
title: "Integrate Tavily to enable AI-powered web search in your platform",
|
|
2154
|
+
logo: "img/integrations/tavily.png",
|
|
2155
|
+
new: true
|
|
2156
|
+
},
|
|
2157
|
+
{
|
|
2158
|
+
name: "Serp API",
|
|
2159
|
+
category: "Search",
|
|
2160
|
+
type: "serp_api",
|
|
2161
|
+
description: "SerpApi is a real-time search engine results page (SERP) API that provides structured data from Google, Bing, and other search engines. Use it to integrate search results, local listings, and SERP features into your applications without dealing with scraping or rate limits.",
|
|
2162
|
+
title: "Integrate Serp API to add search engine results to your platform",
|
|
2163
|
+
logo: "img/integrations/serp_api.png",
|
|
2164
|
+
new: true
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
name: "Bing Search",
|
|
2168
|
+
category: "Search",
|
|
2169
|
+
type: "bing_search",
|
|
2170
|
+
description: "Bing Search API gives your application access to web search results from Microsoft Bing. Integrate search capabilities to power discovery, research, and real-time information retrieval across your platform.",
|
|
2171
|
+
title: "Integrate Bing Search to enable web search in your platform",
|
|
2172
|
+
logo: "img/integrations/bing_search.png",
|
|
2173
|
+
new: true
|
|
2174
|
+
}
|
|
2175
|
+
]
|
|
2176
|
+
},
|
|
2130
2177
|
{
|
|
2131
2178
|
name: "Miscellaneous",
|
|
2132
2179
|
list: [
|