@verma-consulting/common-library 0.1.57 → 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 +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2112,7 +2112,8 @@ declare enum integrationType {
|
|
|
2112
2112
|
shopify = "shopify",
|
|
2113
2113
|
tavily = "tavily",
|
|
2114
2114
|
serp_api = "serp_api",
|
|
2115
|
-
bing_search = "bing_search"
|
|
2115
|
+
bing_search = "bing_search",
|
|
2116
|
+
zendesk = "zendesk"
|
|
2116
2117
|
}
|
|
2117
2118
|
declare enum integrationCategory {
|
|
2118
2119
|
Logistic = "Logistic",
|
|
@@ -2273,7 +2274,15 @@ declare const constants: {
|
|
|
2273
2274
|
DEFAULT_SORT: string;
|
|
2274
2275
|
DEFAULT_KANBAN_FIELD: string;
|
|
2275
2276
|
DEFAULT_PRIMARY_THEME: string;
|
|
2277
|
+
DEFAULT_LANGUAGE: string;
|
|
2278
|
+
DEFAULT_CURRENCY: string;
|
|
2276
2279
|
DEFAULT_CURRENCY_FIELDS: string[];
|
|
2280
|
+
SNACKBAR_TYPES: {
|
|
2281
|
+
SUCCESS: string;
|
|
2282
|
+
ERROR: string;
|
|
2283
|
+
WARNING: string;
|
|
2284
|
+
INFO: string;
|
|
2285
|
+
};
|
|
2277
2286
|
MODEL_APP_MAPPING: {
|
|
2278
2287
|
clients: string;
|
|
2279
2288
|
tasks: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2112,7 +2112,8 @@ declare enum integrationType {
|
|
|
2112
2112
|
shopify = "shopify",
|
|
2113
2113
|
tavily = "tavily",
|
|
2114
2114
|
serp_api = "serp_api",
|
|
2115
|
-
bing_search = "bing_search"
|
|
2115
|
+
bing_search = "bing_search",
|
|
2116
|
+
zendesk = "zendesk"
|
|
2116
2117
|
}
|
|
2117
2118
|
declare enum integrationCategory {
|
|
2118
2119
|
Logistic = "Logistic",
|
|
@@ -2273,7 +2274,15 @@ declare const constants: {
|
|
|
2273
2274
|
DEFAULT_SORT: string;
|
|
2274
2275
|
DEFAULT_KANBAN_FIELD: string;
|
|
2275
2276
|
DEFAULT_PRIMARY_THEME: string;
|
|
2277
|
+
DEFAULT_LANGUAGE: string;
|
|
2278
|
+
DEFAULT_CURRENCY: string;
|
|
2276
2279
|
DEFAULT_CURRENCY_FIELDS: string[];
|
|
2280
|
+
SNACKBAR_TYPES: {
|
|
2281
|
+
SUCCESS: string;
|
|
2282
|
+
ERROR: string;
|
|
2283
|
+
WARNING: string;
|
|
2284
|
+
INFO: string;
|
|
2285
|
+
};
|
|
2277
2286
|
MODEL_APP_MAPPING: {
|
|
2278
2287
|
clients: string;
|
|
2279
2288
|
tasks: string;
|
package/dist/index.js
CHANGED
|
@@ -871,6 +871,7 @@ var integrationType = /* @__PURE__ */ ((integrationType2) => {
|
|
|
871
871
|
integrationType2["tavily"] = "tavily";
|
|
872
872
|
integrationType2["serp_api"] = "serp_api";
|
|
873
873
|
integrationType2["bing_search"] = "bing_search";
|
|
874
|
+
integrationType2["zendesk"] = "zendesk";
|
|
874
875
|
return integrationType2;
|
|
875
876
|
})(integrationType || {});
|
|
876
877
|
var integrationCategory = /* @__PURE__ */ ((integrationCategory2) => {
|
|
@@ -1035,6 +1036,8 @@ var constants = {
|
|
|
1035
1036
|
DEFAULT_SORT: "createdAt",
|
|
1036
1037
|
DEFAULT_KANBAN_FIELD: "status",
|
|
1037
1038
|
DEFAULT_PRIMARY_THEME: "#00a893",
|
|
1039
|
+
DEFAULT_LANGUAGE: "English",
|
|
1040
|
+
DEFAULT_CURRENCY: "usd",
|
|
1038
1041
|
DEFAULT_CURRENCY_FIELDS: [
|
|
1039
1042
|
"annualRevenue",
|
|
1040
1043
|
"balance",
|
|
@@ -1057,6 +1060,12 @@ var constants = {
|
|
|
1057
1060
|
"amountCapturable",
|
|
1058
1061
|
"amountReceived"
|
|
1059
1062
|
],
|
|
1063
|
+
SNACKBAR_TYPES: {
|
|
1064
|
+
SUCCESS: "success",
|
|
1065
|
+
ERROR: "error",
|
|
1066
|
+
WARNING: "warning",
|
|
1067
|
+
INFO: "info"
|
|
1068
|
+
},
|
|
1060
1069
|
MODEL_APP_MAPPING: {
|
|
1061
1070
|
clients: "cms",
|
|
1062
1071
|
tasks: "cms",
|
|
@@ -2184,6 +2193,15 @@ var constants = {
|
|
|
2184
2193
|
{
|
|
2185
2194
|
name: "Miscellaneous",
|
|
2186
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
|
+
},
|
|
2187
2205
|
{
|
|
2188
2206
|
name: "Fixer io",
|
|
2189
2207
|
category: "Miscellaneous",
|