@beabee/beabee-common 1.10.14 → 1.10.15
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.
|
@@ -29,6 +29,9 @@ exports.calloutFilters = {
|
|
|
29
29
|
},
|
|
30
30
|
};
|
|
31
31
|
exports.calloutResponseFilters = {
|
|
32
|
+
id: {
|
|
33
|
+
type: "text",
|
|
34
|
+
},
|
|
32
35
|
contact: {
|
|
33
36
|
type: "contact",
|
|
34
37
|
nullable: true,
|
|
@@ -44,6 +47,6 @@ exports.calloutResponseFilters = {
|
|
|
44
47
|
},
|
|
45
48
|
bucket: {
|
|
46
49
|
type: "text",
|
|
47
|
-
nullable: true
|
|
48
|
-
}
|
|
50
|
+
nullable: true,
|
|
51
|
+
},
|
|
49
52
|
};
|
|
@@ -26,6 +26,9 @@ export const calloutFilters = {
|
|
|
26
26
|
},
|
|
27
27
|
};
|
|
28
28
|
export const calloutResponseFilters = {
|
|
29
|
+
id: {
|
|
30
|
+
type: "text",
|
|
31
|
+
},
|
|
29
32
|
contact: {
|
|
30
33
|
type: "contact",
|
|
31
34
|
nullable: true,
|
|
@@ -41,6 +44,6 @@ export const calloutResponseFilters = {
|
|
|
41
44
|
},
|
|
42
45
|
bucket: {
|
|
43
46
|
type: "text",
|
|
44
|
-
nullable: true
|
|
45
|
-
}
|
|
47
|
+
nullable: true,
|
|
48
|
+
},
|
|
46
49
|
};
|
|
@@ -22,6 +22,9 @@ export declare const calloutFilters: {
|
|
|
22
22
|
};
|
|
23
23
|
export type CalloutFilterName = keyof typeof calloutFilters;
|
|
24
24
|
export declare const calloutResponseFilters: {
|
|
25
|
+
readonly id: {
|
|
26
|
+
readonly type: "text";
|
|
27
|
+
};
|
|
25
28
|
readonly contact: {
|
|
26
29
|
readonly type: "contact";
|
|
27
30
|
readonly nullable: true;
|