@verma-consulting/common-library 0.1.58 → 0.1.60
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 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2332,6 +2332,16 @@ declare const constants: {
|
|
|
2332
2332
|
Int: string;
|
|
2333
2333
|
Boolean: string;
|
|
2334
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
|
+
DateTime: string;
|
|
2344
|
+
};
|
|
2335
2345
|
STATIC_STORAGE_BUCKET_FOLDERS: {
|
|
2336
2346
|
avatars: string;
|
|
2337
2347
|
exports: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2332,6 +2332,16 @@ declare const constants: {
|
|
|
2332
2332
|
Int: string;
|
|
2333
2333
|
Boolean: string;
|
|
2334
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
|
+
DateTime: string;
|
|
2344
|
+
};
|
|
2335
2345
|
STATIC_STORAGE_BUCKET_FOLDERS: {
|
|
2336
2346
|
avatars: string;
|
|
2337
2347
|
exports: string;
|
package/dist/index.js
CHANGED
|
@@ -1141,6 +1141,16 @@ var constants = {
|
|
|
1141
1141
|
Int: "Int",
|
|
1142
1142
|
Boolean: "Boolean"
|
|
1143
1143
|
},
|
|
1144
|
+
GQL_FIELD_MAPPER: {
|
|
1145
|
+
LIST: "Multi Select",
|
|
1146
|
+
OBJECT: "Single Select",
|
|
1147
|
+
ENUM: "Single Select",
|
|
1148
|
+
String: "Text Field",
|
|
1149
|
+
Float: "Number",
|
|
1150
|
+
Int: "Number",
|
|
1151
|
+
Boolean: "Checkbox",
|
|
1152
|
+
DateTime: "Date"
|
|
1153
|
+
},
|
|
1144
1154
|
STATIC_STORAGE_BUCKET_FOLDERS: {
|
|
1145
1155
|
avatars: "avatars",
|
|
1146
1156
|
exports: "exports",
|