@bpinternal/const 0.0.9 → 0.0.10

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/index.cjs CHANGED
@@ -73,6 +73,11 @@ var limitConfigs = {
73
73
  value: 50,
74
74
  unit: "count"
75
75
  },
76
+ issue_event_item_payload_bytes: {
77
+ value: 131072,
78
+ // 128 KB
79
+ unit: "bytes"
80
+ },
76
81
  message_payload_bytes: {
77
82
  value: 131072,
78
83
  // 128 KB
package/dist/index.mjs CHANGED
@@ -43,6 +43,11 @@ var limitConfigs = {
43
43
  value: 50,
44
44
  unit: "count"
45
45
  },
46
+ issue_event_item_payload_bytes: {
47
+ value: 131072,
48
+ // 128 KB
49
+ unit: "bytes"
50
+ },
46
51
  message_payload_bytes: {
47
52
  value: 131072,
48
53
  // 128 KB
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Constant utilities for Botpress",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.mjs",
package/src/limits.ts CHANGED
@@ -53,6 +53,10 @@ export const limitConfigs = {
53
53
  value: 50,
54
54
  unit: 'count'
55
55
  },
56
+ issue_event_item_payload_bytes: {
57
+ value: 131072, // 128 KB
58
+ unit: 'bytes'
59
+ },
56
60
  message_payload_bytes: {
57
61
  value: 131072, // 128 KB
58
62
  unit: 'bytes'