@beabee/beabee-common 1.19.9 → 1.19.11

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.
@@ -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
+ };
@@ -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
+ };
@@ -36,7 +36,7 @@ export interface RadioCalloutComponentSchema extends BaseCalloutComponentSchema
36
36
  values: {
37
37
  label: string;
38
38
  value: string;
39
- nextSlideId: string;
39
+ nextSlideId?: string;
40
40
  }[];
41
41
  }
42
42
  export type CalloutComponentSchema = ContentCalloutComponentSchema | SelectCalloutComponentSchema | RadioCalloutComponentSchema | InputCalloutComponentSchema | NestableCalloutComponentSchema;
@@ -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.9",
3
+ "version": "1.19.11",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",