@verma-consulting/common-library 0.1.47 → 0.1.49
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 +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +43 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -32
- 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,6 +2100,7 @@ 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
2106
|
shopify = "shopify",
|
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,6 +2100,7 @@ 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
2106
|
shopify = "shopify",
|
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,6 +858,7 @@ 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";
|
|
@@ -2074,6 +2076,15 @@ var constants = {
|
|
|
2074
2076
|
logo: "img/integrations/gemini.png",
|
|
2075
2077
|
new: true
|
|
2076
2078
|
},
|
|
2079
|
+
{
|
|
2080
|
+
name: "Co-Pilot",
|
|
2081
|
+
category: "AI",
|
|
2082
|
+
type: "co_pilot",
|
|
2083
|
+
description: "Co-Pilot is an AI assistant that helps you code, search, and get answers across your development workflow.",
|
|
2084
|
+
title: "Integrate Co-Pilot to your platform",
|
|
2085
|
+
logo: "img/integrations/co_pilot.png",
|
|
2086
|
+
new: true
|
|
2087
|
+
},
|
|
2077
2088
|
{
|
|
2078
2089
|
name: "Claude",
|
|
2079
2090
|
category: "AI",
|
|
@@ -2095,33 +2106,15 @@ var constants = {
|
|
|
2095
2106
|
]
|
|
2096
2107
|
},
|
|
2097
2108
|
{
|
|
2098
|
-
name: "
|
|
2109
|
+
name: "Commerce",
|
|
2099
2110
|
list: [
|
|
2100
2111
|
{
|
|
2101
|
-
name: "
|
|
2102
|
-
category: "
|
|
2103
|
-
type: "
|
|
2104
|
-
description: "
|
|
2105
|
-
title: "Integrate
|
|
2106
|
-
logo: "img/integrations/
|
|
2107
|
-
new: true
|
|
2108
|
-
},
|
|
2109
|
-
{
|
|
2110
|
-
name: "Serp API",
|
|
2111
|
-
category: "Search",
|
|
2112
|
-
type: "serp_api",
|
|
2113
|
-
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.",
|
|
2114
|
-
title: "Integrate Serp API to add search engine results to your platform",
|
|
2115
|
-
logo: "img/integrations/serp_api.png",
|
|
2116
|
-
new: true
|
|
2117
|
-
},
|
|
2118
|
-
{
|
|
2119
|
-
name: "Bing Search",
|
|
2120
|
-
category: "Search",
|
|
2121
|
-
type: "bing_search",
|
|
2122
|
-
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.",
|
|
2123
|
-
title: "Integrate Bing Search to enable web search in your platform",
|
|
2124
|
-
logo: "img/integrations/bing_search.png",
|
|
2112
|
+
name: "Shopify",
|
|
2113
|
+
category: "Commerce",
|
|
2114
|
+
type: "shopify",
|
|
2115
|
+
description: "Cloud-based commerce platform that allows businesses to sell products online and in-person.",
|
|
2116
|
+
title: "Integrate with shopify to connect client usage to platform",
|
|
2117
|
+
logo: "img/integrations/shopify.png",
|
|
2125
2118
|
new: true
|
|
2126
2119
|
}
|
|
2127
2120
|
]
|
|
@@ -2150,15 +2143,33 @@ var constants = {
|
|
|
2150
2143
|
]
|
|
2151
2144
|
},
|
|
2152
2145
|
{
|
|
2153
|
-
name: "
|
|
2146
|
+
name: "Search",
|
|
2154
2147
|
list: [
|
|
2155
2148
|
{
|
|
2156
|
-
name: "
|
|
2157
|
-
category: "
|
|
2158
|
-
type: "
|
|
2159
|
-
description: "
|
|
2160
|
-
title: "Integrate
|
|
2161
|
-
logo: "img/integrations/
|
|
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",
|
|
2162
2173
|
new: true
|
|
2163
2174
|
}
|
|
2164
2175
|
]
|