@beabee/beabee-common 0.21.0-alpha.4 → 0.21.0-alpha.6

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.
@@ -24,6 +24,7 @@
24
24
  RoleTypes: () => RoleTypes,
25
25
  apiKeyFilters: () => apiKeyFilters,
26
26
  calcPaymentFee: () => calcPaymentFee,
27
+ calloutChannelFilters: () => calloutChannelFilters,
27
28
  calloutComponentContentValidator: () => calloutComponentContentValidator,
28
29
  calloutComponentInputAddressValidator: () => calloutComponentInputAddressValidator,
29
30
  calloutComponentInputCheckboxValidator: () => calloutComponentInputCheckboxValidator,
@@ -331,6 +332,10 @@
331
332
  },
332
333
  hidden: {
333
334
  type: "boolean"
335
+ },
336
+ channels: {
337
+ type: "array",
338
+ nullable: true
334
339
  }
335
340
  };
336
341
  var calloutResponseFilters = {
@@ -363,10 +368,6 @@
363
368
  },
364
369
  answers: {
365
370
  type: "blob"
366
- },
367
- channels: {
368
- type: "array",
369
- nullable: true
370
371
  }
371
372
  };
372
373
  var calloutResponseCommentFilters = {
@@ -403,6 +404,20 @@
403
404
  type: "text"
404
405
  }
405
406
  };
407
+ var calloutChannelFilters = {
408
+ id: {
409
+ type: "text"
410
+ },
411
+ name: {
412
+ type: "text"
413
+ },
414
+ description: {
415
+ type: "text"
416
+ },
417
+ calloutId: {
418
+ type: "text"
419
+ }
420
+ };
406
421
 
407
422
  // src/search/contacts.ts
408
423
  var RoleTypes = ["member", "admin", "superadmin"];