@bpinternal/const 0.0.23 → 0.0.24

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
@@ -100,6 +100,10 @@ var limitConfigs = {
100
100
  tag_definition_count: {
101
101
  value: 50,
102
102
  unit: "count"
103
+ },
104
+ bot_integration_secret_count: {
105
+ value: 25,
106
+ unit: "count"
103
107
  }
104
108
  };
105
109
 
package/dist/index.mjs CHANGED
@@ -70,6 +70,10 @@ var limitConfigs = {
70
70
  tag_definition_count: {
71
71
  value: 50,
72
72
  unit: "count"
73
+ },
74
+ bot_integration_secret_count: {
75
+ value: 25,
76
+ unit: "count"
73
77
  }
74
78
  };
75
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "Constant utilities for Botpress",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.mjs",
package/src/limits.ts CHANGED
@@ -76,5 +76,9 @@ export const limitConfigs = {
76
76
  tag_definition_count: {
77
77
  value: 50,
78
78
  unit: 'count'
79
+ },
80
+ bot_integration_secret_count: {
81
+ value: 25,
82
+ unit: 'count'
79
83
  }
80
84
  } as const satisfies Record<string, Limit>