@verma-consulting/common-library 0.1.56 → 0.1.58
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 +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2017,7 +2017,8 @@ declare enum status {
|
|
|
2017
2017
|
declare enum ContentType {
|
|
2018
2018
|
Grid = "Grid",
|
|
2019
2019
|
Table = "Table",
|
|
2020
|
-
Kanban = "Kanban"
|
|
2020
|
+
Kanban = "Kanban",
|
|
2021
|
+
Map = "Map"
|
|
2021
2022
|
}
|
|
2022
2023
|
declare enum CalculationType {
|
|
2023
2024
|
EqualsTo = "EqualsTo",
|
|
@@ -2111,7 +2112,8 @@ declare enum integrationType {
|
|
|
2111
2112
|
shopify = "shopify",
|
|
2112
2113
|
tavily = "tavily",
|
|
2113
2114
|
serp_api = "serp_api",
|
|
2114
|
-
bing_search = "bing_search"
|
|
2115
|
+
bing_search = "bing_search",
|
|
2116
|
+
zendesk = "zendesk"
|
|
2115
2117
|
}
|
|
2116
2118
|
declare enum integrationCategory {
|
|
2117
2119
|
Logistic = "Logistic",
|
|
@@ -2272,7 +2274,15 @@ declare const constants: {
|
|
|
2272
2274
|
DEFAULT_SORT: string;
|
|
2273
2275
|
DEFAULT_KANBAN_FIELD: string;
|
|
2274
2276
|
DEFAULT_PRIMARY_THEME: string;
|
|
2277
|
+
DEFAULT_LANGUAGE: string;
|
|
2278
|
+
DEFAULT_CURRENCY: string;
|
|
2275
2279
|
DEFAULT_CURRENCY_FIELDS: string[];
|
|
2280
|
+
SNACKBAR_TYPES: {
|
|
2281
|
+
SUCCESS: string;
|
|
2282
|
+
ERROR: string;
|
|
2283
|
+
WARNING: string;
|
|
2284
|
+
INFO: string;
|
|
2285
|
+
};
|
|
2276
2286
|
MODEL_APP_MAPPING: {
|
|
2277
2287
|
clients: string;
|
|
2278
2288
|
tasks: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2017,7 +2017,8 @@ declare enum status {
|
|
|
2017
2017
|
declare enum ContentType {
|
|
2018
2018
|
Grid = "Grid",
|
|
2019
2019
|
Table = "Table",
|
|
2020
|
-
Kanban = "Kanban"
|
|
2020
|
+
Kanban = "Kanban",
|
|
2021
|
+
Map = "Map"
|
|
2021
2022
|
}
|
|
2022
2023
|
declare enum CalculationType {
|
|
2023
2024
|
EqualsTo = "EqualsTo",
|
|
@@ -2111,7 +2112,8 @@ declare enum integrationType {
|
|
|
2111
2112
|
shopify = "shopify",
|
|
2112
2113
|
tavily = "tavily",
|
|
2113
2114
|
serp_api = "serp_api",
|
|
2114
|
-
bing_search = "bing_search"
|
|
2115
|
+
bing_search = "bing_search",
|
|
2116
|
+
zendesk = "zendesk"
|
|
2115
2117
|
}
|
|
2116
2118
|
declare enum integrationCategory {
|
|
2117
2119
|
Logistic = "Logistic",
|
|
@@ -2272,7 +2274,15 @@ declare const constants: {
|
|
|
2272
2274
|
DEFAULT_SORT: string;
|
|
2273
2275
|
DEFAULT_KANBAN_FIELD: string;
|
|
2274
2276
|
DEFAULT_PRIMARY_THEME: string;
|
|
2277
|
+
DEFAULT_LANGUAGE: string;
|
|
2278
|
+
DEFAULT_CURRENCY: string;
|
|
2275
2279
|
DEFAULT_CURRENCY_FIELDS: string[];
|
|
2280
|
+
SNACKBAR_TYPES: {
|
|
2281
|
+
SUCCESS: string;
|
|
2282
|
+
ERROR: string;
|
|
2283
|
+
WARNING: string;
|
|
2284
|
+
INFO: string;
|
|
2285
|
+
};
|
|
2276
2286
|
MODEL_APP_MAPPING: {
|
|
2277
2287
|
clients: string;
|
|
2278
2288
|
tasks: string;
|
package/dist/index.js
CHANGED
|
@@ -762,6 +762,7 @@ var ContentType = /* @__PURE__ */ ((ContentType2) => {
|
|
|
762
762
|
ContentType2["Grid"] = "Grid";
|
|
763
763
|
ContentType2["Table"] = "Table";
|
|
764
764
|
ContentType2["Kanban"] = "Kanban";
|
|
765
|
+
ContentType2["Map"] = "Map";
|
|
765
766
|
return ContentType2;
|
|
766
767
|
})(ContentType || {});
|
|
767
768
|
var CalculationType = /* @__PURE__ */ ((CalculationType2) => {
|
|
@@ -870,6 +871,7 @@ var integrationType = /* @__PURE__ */ ((integrationType2) => {
|
|
|
870
871
|
integrationType2["tavily"] = "tavily";
|
|
871
872
|
integrationType2["serp_api"] = "serp_api";
|
|
872
873
|
integrationType2["bing_search"] = "bing_search";
|
|
874
|
+
integrationType2["zendesk"] = "zendesk";
|
|
873
875
|
return integrationType2;
|
|
874
876
|
})(integrationType || {});
|
|
875
877
|
var integrationCategory = /* @__PURE__ */ ((integrationCategory2) => {
|
|
@@ -1034,6 +1036,8 @@ var constants = {
|
|
|
1034
1036
|
DEFAULT_SORT: "createdAt",
|
|
1035
1037
|
DEFAULT_KANBAN_FIELD: "status",
|
|
1036
1038
|
DEFAULT_PRIMARY_THEME: "#00a893",
|
|
1039
|
+
DEFAULT_LANGUAGE: "English",
|
|
1040
|
+
DEFAULT_CURRENCY: "usd",
|
|
1037
1041
|
DEFAULT_CURRENCY_FIELDS: [
|
|
1038
1042
|
"annualRevenue",
|
|
1039
1043
|
"balance",
|
|
@@ -1056,6 +1060,12 @@ var constants = {
|
|
|
1056
1060
|
"amountCapturable",
|
|
1057
1061
|
"amountReceived"
|
|
1058
1062
|
],
|
|
1063
|
+
SNACKBAR_TYPES: {
|
|
1064
|
+
SUCCESS: "success",
|
|
1065
|
+
ERROR: "error",
|
|
1066
|
+
WARNING: "warning",
|
|
1067
|
+
INFO: "info"
|
|
1068
|
+
},
|
|
1059
1069
|
MODEL_APP_MAPPING: {
|
|
1060
1070
|
clients: "cms",
|
|
1061
1071
|
tasks: "cms",
|
|
@@ -2183,6 +2193,15 @@ var constants = {
|
|
|
2183
2193
|
{
|
|
2184
2194
|
name: "Miscellaneous",
|
|
2185
2195
|
list: [
|
|
2196
|
+
{
|
|
2197
|
+
name: "Zendesk",
|
|
2198
|
+
category: "Miscellaneous",
|
|
2199
|
+
type: "zendesk",
|
|
2200
|
+
description: "Zendesk is a customer service platform that helps teams manage support tickets, automate workflows, and deliver consistent customer experiences across multiple communication channels.",
|
|
2201
|
+
title: "Integrate Zendesk to manage support tickets and streamline helpdesk operations across the platform",
|
|
2202
|
+
logo: "img/integrations/zendesk.png",
|
|
2203
|
+
new: true
|
|
2204
|
+
},
|
|
2186
2205
|
{
|
|
2187
2206
|
name: "Fixer io",
|
|
2188
2207
|
category: "Miscellaneous",
|