@verma-consulting/common-library 0.1.57 → 0.1.59
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 +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -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;
|
|
@@ -2323,6 +2332,15 @@ declare const constants: {
|
|
|
2323
2332
|
Int: string;
|
|
2324
2333
|
Boolean: string;
|
|
2325
2334
|
};
|
|
2335
|
+
GQL_FIELD_MAPPER: {
|
|
2336
|
+
LIST: string;
|
|
2337
|
+
OBJECT: string;
|
|
2338
|
+
ENUM: string;
|
|
2339
|
+
String: string;
|
|
2340
|
+
Float: string;
|
|
2341
|
+
Int: string;
|
|
2342
|
+
Boolean: string;
|
|
2343
|
+
};
|
|
2326
2344
|
STATIC_STORAGE_BUCKET_FOLDERS: {
|
|
2327
2345
|
avatars: string;
|
|
2328
2346
|
exports: 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;
|
|
@@ -2323,6 +2332,15 @@ declare const constants: {
|
|
|
2323
2332
|
Int: string;
|
|
2324
2333
|
Boolean: string;
|
|
2325
2334
|
};
|
|
2335
|
+
GQL_FIELD_MAPPER: {
|
|
2336
|
+
LIST: string;
|
|
2337
|
+
OBJECT: string;
|
|
2338
|
+
ENUM: string;
|
|
2339
|
+
String: string;
|
|
2340
|
+
Float: string;
|
|
2341
|
+
Int: string;
|
|
2342
|
+
Boolean: string;
|
|
2343
|
+
};
|
|
2326
2344
|
STATIC_STORAGE_BUCKET_FOLDERS: {
|
|
2327
2345
|
avatars: string;
|
|
2328
2346
|
exports: 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",
|
|
@@ -1132,6 +1141,15 @@ var constants = {
|
|
|
1132
1141
|
Int: "Int",
|
|
1133
1142
|
Boolean: "Boolean"
|
|
1134
1143
|
},
|
|
1144
|
+
GQL_FIELD_MAPPER: {
|
|
1145
|
+
LIST: "Single Select",
|
|
1146
|
+
OBJECT: "Single Select",
|
|
1147
|
+
ENUM: "Single Select",
|
|
1148
|
+
String: "Text Field",
|
|
1149
|
+
Float: "Number",
|
|
1150
|
+
Int: "Number",
|
|
1151
|
+
Boolean: "Checkbox"
|
|
1152
|
+
},
|
|
1135
1153
|
STATIC_STORAGE_BUCKET_FOLDERS: {
|
|
1136
1154
|
avatars: "avatars",
|
|
1137
1155
|
exports: "exports",
|
|
@@ -2184,6 +2202,15 @@ var constants = {
|
|
|
2184
2202
|
{
|
|
2185
2203
|
name: "Miscellaneous",
|
|
2186
2204
|
list: [
|
|
2205
|
+
{
|
|
2206
|
+
name: "Zendesk",
|
|
2207
|
+
category: "Miscellaneous",
|
|
2208
|
+
type: "zendesk",
|
|
2209
|
+
description: "Zendesk is a customer service platform that helps teams manage support tickets, automate workflows, and deliver consistent customer experiences across multiple communication channels.",
|
|
2210
|
+
title: "Integrate Zendesk to manage support tickets and streamline helpdesk operations across the platform",
|
|
2211
|
+
logo: "img/integrations/zendesk.png",
|
|
2212
|
+
new: true
|
|
2213
|
+
},
|
|
2187
2214
|
{
|
|
2188
2215
|
name: "Fixer io",
|
|
2189
2216
|
category: "Miscellaneous",
|