@beabee/beabee-common 1.19.10 → 1.19.12

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.
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.calloutTagFilters = exports.calloutResponseCommentFilters = exports.calloutResponseFilters = exports.calloutFilters = void 0;
4
4
  const data_1 = require("../data");
5
5
  exports.calloutFilters = {
6
+ id: {
7
+ type: "text",
8
+ },
6
9
  slug: {
7
10
  type: "text",
8
11
  },
@@ -41,7 +44,7 @@ exports.calloutResponseFilters = {
41
44
  type: "contact",
42
45
  nullable: true,
43
46
  },
44
- callout: {
47
+ calloutId: {
45
48
  type: "text",
46
49
  },
47
50
  createdAt: {
@@ -95,7 +98,7 @@ exports.calloutTagFilters = {
95
98
  description: {
96
99
  type: "text",
97
100
  },
98
- calloutSlug: {
101
+ calloutId: {
99
102
  type: "text",
100
103
  },
101
104
  };
@@ -79,3 +79,4 @@ __exportStar(require("./callouts"), exports);
79
79
  __exportStar(require("./contacts"), exports);
80
80
  __exportStar(require("./notices"), exports);
81
81
  __exportStar(require("./payments"), exports);
82
+ __exportStar(require("./segments"), exports);
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.segmentFilters = void 0;
4
+ exports.segmentFilters = {
5
+ id: {
6
+ type: "text",
7
+ },
8
+ name: {
9
+ type: "text",
10
+ },
11
+ description: {
12
+ type: "blob",
13
+ },
14
+ };
@@ -1,5 +1,8 @@
1
1
  import { ItemStatus } from "../data";
2
2
  export const calloutFilters = {
3
+ id: {
4
+ type: "text",
5
+ },
3
6
  slug: {
4
7
  type: "text",
5
8
  },
@@ -38,7 +41,7 @@ export const calloutResponseFilters = {
38
41
  type: "contact",
39
42
  nullable: true,
40
43
  },
41
- callout: {
44
+ calloutId: {
42
45
  type: "text",
43
46
  },
44
47
  createdAt: {
@@ -92,7 +95,7 @@ export const calloutTagFilters = {
92
95
  description: {
93
96
  type: "text",
94
97
  },
95
- calloutSlug: {
98
+ calloutId: {
96
99
  type: "text",
97
100
  },
98
101
  };
@@ -62,3 +62,4 @@ export * from "./callouts";
62
62
  export * from "./contacts";
63
63
  export * from "./notices";
64
64
  export * from "./payments";
65
+ export * from "./segments";
@@ -0,0 +1,11 @@
1
+ export const segmentFilters = {
2
+ id: {
3
+ type: "text",
4
+ },
5
+ name: {
6
+ type: "text",
7
+ },
8
+ description: {
9
+ type: "blob",
10
+ },
11
+ };
@@ -1,5 +1,8 @@
1
1
  import { ItemStatus } from "../data";
2
2
  export declare const calloutFilters: {
3
+ readonly id: {
4
+ readonly type: "text";
5
+ };
3
6
  readonly slug: {
4
7
  readonly type: "text";
5
8
  };
@@ -34,7 +37,7 @@ export declare const calloutResponseFilters: {
34
37
  readonly type: "contact";
35
38
  readonly nullable: true;
36
39
  };
37
- readonly callout: {
40
+ readonly calloutId: {
38
41
  readonly type: "text";
39
42
  };
40
43
  readonly createdAt: {
@@ -90,7 +93,7 @@ export declare const calloutTagFilters: {
90
93
  readonly description: {
91
94
  readonly type: "text";
92
95
  };
93
- readonly calloutSlug: {
96
+ readonly calloutId: {
94
97
  readonly type: "text";
95
98
  };
96
99
  };
@@ -192,3 +192,4 @@ export * from "./callouts";
192
192
  export * from "./contacts";
193
193
  export * from "./notices";
194
194
  export * from "./payments";
195
+ export * from "./segments";
@@ -0,0 +1,12 @@
1
+ export declare const segmentFilters: {
2
+ readonly id: {
3
+ readonly type: "text";
4
+ };
5
+ readonly name: {
6
+ readonly type: "text";
7
+ };
8
+ readonly description: {
9
+ readonly type: "blob";
10
+ };
11
+ };
12
+ export type SegmentFilterName = keyof typeof segmentFilters;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beabee/beabee-common",
3
- "version": "1.19.10",
3
+ "version": "1.19.12",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",