@beabee/beabee-common 1.19.4 → 1.19.5
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.calloutResponseCommentFilters = exports.calloutResponseFilters = exports.calloutFilters = void 0;
|
|
3
|
+
exports.calloutTagFilters = exports.calloutResponseCommentFilters = exports.calloutResponseFilters = exports.calloutFilters = void 0;
|
|
4
4
|
const data_1 = require("../data");
|
|
5
5
|
exports.calloutFilters = {
|
|
6
6
|
slug: {
|
|
@@ -85,3 +85,17 @@ exports.calloutResponseCommentFilters = {
|
|
|
85
85
|
type: "text",
|
|
86
86
|
},
|
|
87
87
|
};
|
|
88
|
+
exports.calloutTagFilters = {
|
|
89
|
+
id: {
|
|
90
|
+
type: "text",
|
|
91
|
+
},
|
|
92
|
+
name: {
|
|
93
|
+
type: "text",
|
|
94
|
+
},
|
|
95
|
+
description: {
|
|
96
|
+
type: "text",
|
|
97
|
+
},
|
|
98
|
+
calloutSlug: {
|
|
99
|
+
type: "text",
|
|
100
|
+
},
|
|
101
|
+
};
|
|
@@ -82,3 +82,17 @@ export const calloutResponseCommentFilters = {
|
|
|
82
82
|
type: "text",
|
|
83
83
|
},
|
|
84
84
|
};
|
|
85
|
+
export const calloutTagFilters = {
|
|
86
|
+
id: {
|
|
87
|
+
type: "text",
|
|
88
|
+
},
|
|
89
|
+
name: {
|
|
90
|
+
type: "text",
|
|
91
|
+
},
|
|
92
|
+
description: {
|
|
93
|
+
type: "text",
|
|
94
|
+
},
|
|
95
|
+
calloutSlug: {
|
|
96
|
+
type: "text",
|
|
97
|
+
},
|
|
98
|
+
};
|
|
@@ -80,3 +80,18 @@ export declare const calloutResponseCommentFilters: {
|
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
82
|
export type CalloutResponseCommentFilterName = keyof typeof calloutResponseCommentFilters;
|
|
83
|
+
export declare const calloutTagFilters: {
|
|
84
|
+
readonly id: {
|
|
85
|
+
readonly type: "text";
|
|
86
|
+
};
|
|
87
|
+
readonly name: {
|
|
88
|
+
readonly type: "text";
|
|
89
|
+
};
|
|
90
|
+
readonly description: {
|
|
91
|
+
readonly type: "text";
|
|
92
|
+
};
|
|
93
|
+
readonly calloutSlug: {
|
|
94
|
+
readonly type: "text";
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
export type CalloutTagFilterName = keyof typeof calloutTagFilters;
|