@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.
- package/dist/browser/beabee-common.js +19 -4
- package/dist/browser/beabee-common.js.map +2 -2
- package/dist/browser/beabee-common.min.js +1 -1
- package/dist/browser/index.js +19 -4
- package/dist/cjs/search/callouts.cjs +20 -4
- package/dist/cjs/types/callout-channel-filter-name.cjs +16 -0
- package/dist/cjs/types/index.cjs +2 -0
- package/dist/esm/search/callouts.js +19 -4
- package/dist/esm/types/callout-channel-filter-name.js +0 -0
- package/dist/esm/types/index.js +1 -0
- package/dist/types/search/callouts.d.ts +18 -4
- package/dist/types/types/callout-channel-filter-name.d.ts +2 -0
- package/dist/types/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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"];
|