@verma-consulting/common-library 0.1.21 → 0.1.23
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 +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -29
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1805,9 +1805,9 @@ declare enum integrationType {
|
|
|
1805
1805
|
chat_gpt = "chat_gpt",
|
|
1806
1806
|
deepseek = "deepseek",
|
|
1807
1807
|
claude = "claude",
|
|
1808
|
+
google_maps = "google_maps",
|
|
1808
1809
|
shippo = "shippo",
|
|
1809
|
-
shopify = "shopify"
|
|
1810
|
-
dealio = "dealio"
|
|
1810
|
+
shopify = "shopify"
|
|
1811
1811
|
}
|
|
1812
1812
|
declare enum currency {
|
|
1813
1813
|
usd = "usd",
|
|
@@ -2000,7 +2000,7 @@ declare const constants: {
|
|
|
2000
2000
|
GQL_FIELD_TYPE: {
|
|
2001
2001
|
LIST: string;
|
|
2002
2002
|
OBJECT: string;
|
|
2003
|
-
|
|
2003
|
+
ENUM: string;
|
|
2004
2004
|
String: string;
|
|
2005
2005
|
Float: string;
|
|
2006
2006
|
Int: string;
|
|
@@ -2451,7 +2451,7 @@ declare const defaults: {
|
|
|
2451
2451
|
annualRevenue: number;
|
|
2452
2452
|
balance: number;
|
|
2453
2453
|
nextInvoiceSequence: number;
|
|
2454
|
-
taxExempt:
|
|
2454
|
+
taxExempt: null;
|
|
2455
2455
|
website: string;
|
|
2456
2456
|
source: string;
|
|
2457
2457
|
logoUrl: string;
|
|
@@ -2558,7 +2558,7 @@ declare const defaults: {
|
|
|
2558
2558
|
collectionMethod: string;
|
|
2559
2559
|
customerEmail: string;
|
|
2560
2560
|
customerPhone: string;
|
|
2561
|
-
customerTaxExempt:
|
|
2561
|
+
customerTaxExempt: null;
|
|
2562
2562
|
invoicePdf: string;
|
|
2563
2563
|
lastFinalizationError: string;
|
|
2564
2564
|
number: null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1805,9 +1805,9 @@ declare enum integrationType {
|
|
|
1805
1805
|
chat_gpt = "chat_gpt",
|
|
1806
1806
|
deepseek = "deepseek",
|
|
1807
1807
|
claude = "claude",
|
|
1808
|
+
google_maps = "google_maps",
|
|
1808
1809
|
shippo = "shippo",
|
|
1809
|
-
shopify = "shopify"
|
|
1810
|
-
dealio = "dealio"
|
|
1810
|
+
shopify = "shopify"
|
|
1811
1811
|
}
|
|
1812
1812
|
declare enum currency {
|
|
1813
1813
|
usd = "usd",
|
|
@@ -2000,7 +2000,7 @@ declare const constants: {
|
|
|
2000
2000
|
GQL_FIELD_TYPE: {
|
|
2001
2001
|
LIST: string;
|
|
2002
2002
|
OBJECT: string;
|
|
2003
|
-
|
|
2003
|
+
ENUM: string;
|
|
2004
2004
|
String: string;
|
|
2005
2005
|
Float: string;
|
|
2006
2006
|
Int: string;
|
|
@@ -2451,7 +2451,7 @@ declare const defaults: {
|
|
|
2451
2451
|
annualRevenue: number;
|
|
2452
2452
|
balance: number;
|
|
2453
2453
|
nextInvoiceSequence: number;
|
|
2454
|
-
taxExempt:
|
|
2454
|
+
taxExempt: null;
|
|
2455
2455
|
website: string;
|
|
2456
2456
|
source: string;
|
|
2457
2457
|
logoUrl: string;
|
|
@@ -2558,7 +2558,7 @@ declare const defaults: {
|
|
|
2558
2558
|
collectionMethod: string;
|
|
2559
2559
|
customerEmail: string;
|
|
2560
2560
|
customerPhone: string;
|
|
2561
|
-
customerTaxExempt:
|
|
2561
|
+
customerTaxExempt: null;
|
|
2562
2562
|
invoicePdf: string;
|
|
2563
2563
|
lastFinalizationError: string;
|
|
2564
2564
|
number: null;
|
package/dist/index.js
CHANGED
|
@@ -756,9 +756,9 @@ var integrationType = /* @__PURE__ */ ((integrationType2) => {
|
|
|
756
756
|
integrationType2["chat_gpt"] = "chat_gpt";
|
|
757
757
|
integrationType2["deepseek"] = "deepseek";
|
|
758
758
|
integrationType2["claude"] = "claude";
|
|
759
|
+
integrationType2["google_maps"] = "google_maps";
|
|
759
760
|
integrationType2["shippo"] = "shippo";
|
|
760
761
|
integrationType2["shopify"] = "shopify";
|
|
761
|
-
integrationType2["dealio"] = "dealio";
|
|
762
762
|
return integrationType2;
|
|
763
763
|
})(integrationType || {});
|
|
764
764
|
var currency = /* @__PURE__ */ ((currency2) => {
|
|
@@ -991,7 +991,7 @@ var constants = {
|
|
|
991
991
|
GQL_FIELD_TYPE: {
|
|
992
992
|
LIST: "LIST",
|
|
993
993
|
OBJECT: "OBJECT",
|
|
994
|
-
|
|
994
|
+
ENUM: "ENUM",
|
|
995
995
|
String: "String",
|
|
996
996
|
Float: "Float",
|
|
997
997
|
Int: "Int",
|
|
@@ -1468,7 +1468,7 @@ var constants = {
|
|
|
1468
1468
|
description: "Google Workspace (formerly G Suite) is a cloud-based productivity suite that provides tools for collaboration, communication, and business operations. Many companies use Google Workspace to improve efficiency, collaboration, and streamline workflows.",
|
|
1469
1469
|
title: "Integrate to Workspace and manage team members",
|
|
1470
1470
|
logo: "img/integrations/google_workspace.webp",
|
|
1471
|
-
new:
|
|
1471
|
+
new: false
|
|
1472
1472
|
},
|
|
1473
1473
|
{
|
|
1474
1474
|
name: "Microsoft 365",
|
|
@@ -1477,7 +1477,7 @@ var constants = {
|
|
|
1477
1477
|
description: "Microsoft 365 (formerly known as Office 365) is a cloud-based suite of productivity and collaboration tools developed by Microsoft.",
|
|
1478
1478
|
title: "Integrate with your organization microsoft 365 to manage employees",
|
|
1479
1479
|
logo: "img/integrations/microsoft_365.png",
|
|
1480
|
-
new:
|
|
1480
|
+
new: false
|
|
1481
1481
|
}
|
|
1482
1482
|
]
|
|
1483
1483
|
},
|
|
@@ -1514,7 +1514,7 @@ var constants = {
|
|
|
1514
1514
|
description: "ChatGPT is an artificial intelligence (AI) chatbot that uses natural language processing to generate human-like responses to user input.",
|
|
1515
1515
|
title: "Integrate chatGPT to your platform",
|
|
1516
1516
|
logo: "img/integrations/chatgpt.png",
|
|
1517
|
-
new:
|
|
1517
|
+
new: false
|
|
1518
1518
|
},
|
|
1519
1519
|
{
|
|
1520
1520
|
name: "DeepSeek",
|
|
@@ -1537,31 +1537,17 @@ var constants = {
|
|
|
1537
1537
|
]
|
|
1538
1538
|
},
|
|
1539
1539
|
{
|
|
1540
|
-
name: "
|
|
1540
|
+
name: "Logistics",
|
|
1541
1541
|
list: [
|
|
1542
1542
|
{
|
|
1543
|
-
name: "
|
|
1544
|
-
category: "
|
|
1545
|
-
type: "
|
|
1546
|
-
description: "
|
|
1547
|
-
title: "Integrate with
|
|
1548
|
-
logo: "img/integrations/
|
|
1549
|
-
new:
|
|
1543
|
+
name: "Google Maps",
|
|
1544
|
+
category: "Logistics",
|
|
1545
|
+
type: "google_maps",
|
|
1546
|
+
description: "Set of web services provided by Google Cloud that allows you to integrate mapping, location, and navigation functionality.",
|
|
1547
|
+
title: "Integrate with Google Maps to generate maps and address validation",
|
|
1548
|
+
logo: "img/integrations/google_maps.png",
|
|
1549
|
+
new: false
|
|
1550
1550
|
},
|
|
1551
|
-
{
|
|
1552
|
-
name: "Dealio",
|
|
1553
|
-
category: "Commerce",
|
|
1554
|
-
type: "dealio",
|
|
1555
|
-
description: "A complete, Next-Gen Software-as-a-Service platform tailored for financial institutions.",
|
|
1556
|
-
title: "Integrate with dealio to platform",
|
|
1557
|
-
logo: "img/integrations/dealio.svg",
|
|
1558
|
-
new: true
|
|
1559
|
-
}
|
|
1560
|
-
]
|
|
1561
|
-
},
|
|
1562
|
-
{
|
|
1563
|
-
name: "Logistics",
|
|
1564
|
-
list: [
|
|
1565
1551
|
{
|
|
1566
1552
|
name: "Shippo",
|
|
1567
1553
|
category: "Logistics",
|
|
@@ -1569,6 +1555,20 @@ var constants = {
|
|
|
1569
1555
|
description: "Multi-carrier shipping platform that provides businesses with a simple way to integrate shipping functionality into their applications.",
|
|
1570
1556
|
title: "Integrate with shippo to generate labels and live shipping details",
|
|
1571
1557
|
logo: "img/integrations/shippo.png",
|
|
1558
|
+
new: false
|
|
1559
|
+
}
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
name: "Commerce",
|
|
1564
|
+
list: [
|
|
1565
|
+
{
|
|
1566
|
+
name: "Shopify",
|
|
1567
|
+
category: "Commerce",
|
|
1568
|
+
type: "shopify",
|
|
1569
|
+
description: "Cloud-based commerce platform that allows businesses to sell products online and in-person.",
|
|
1570
|
+
title: "Integrate with shopify to connect client usage to platform",
|
|
1571
|
+
logo: "img/integrations/shopify.png",
|
|
1572
1572
|
new: true
|
|
1573
1573
|
}
|
|
1574
1574
|
]
|
|
@@ -1643,7 +1643,7 @@ var defaults = {
|
|
|
1643
1643
|
annualRevenue: 0,
|
|
1644
1644
|
balance: 0,
|
|
1645
1645
|
nextInvoiceSequence: 1,
|
|
1646
|
-
taxExempt:
|
|
1646
|
+
taxExempt: null,
|
|
1647
1647
|
website: "",
|
|
1648
1648
|
source: "Advertisement",
|
|
1649
1649
|
logoUrl: "",
|
|
@@ -1745,7 +1745,7 @@ var defaults = {
|
|
|
1745
1745
|
collectionMethod: "charge_automatically",
|
|
1746
1746
|
customerEmail: "",
|
|
1747
1747
|
customerPhone: "",
|
|
1748
|
-
customerTaxExempt:
|
|
1748
|
+
customerTaxExempt: null,
|
|
1749
1749
|
invoicePdf: "",
|
|
1750
1750
|
lastFinalizationError: "",
|
|
1751
1751
|
number: null,
|