@bpinternal/const 0.0.23 → 0.0.25
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 +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +1 -1
- package/src/limits.ts +4 -0
- package/src/quotas.ts +2 -2
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
|
|
|
@@ -257,8 +261,8 @@ var quotaConfigs = {
|
|
|
257
261
|
trackUsagePerBot: true
|
|
258
262
|
},
|
|
259
263
|
invocation_calls: {
|
|
260
|
-
name: "
|
|
261
|
-
description: "Maximum number of
|
|
264
|
+
name: "Messages",
|
|
265
|
+
description: "Maximum number of messages sent to a bot in a month.",
|
|
262
266
|
default: 2e3,
|
|
263
267
|
kind: "workspace",
|
|
264
268
|
category: "calls",
|
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
|
|
|
@@ -227,8 +231,8 @@ var quotaConfigs = {
|
|
|
227
231
|
trackUsagePerBot: true
|
|
228
232
|
},
|
|
229
233
|
invocation_calls: {
|
|
230
|
-
name: "
|
|
231
|
-
description: "Maximum number of
|
|
234
|
+
name: "Messages",
|
|
235
|
+
description: "Maximum number of messages sent to a bot in a month.",
|
|
232
236
|
default: 2e3,
|
|
233
237
|
kind: "workspace",
|
|
234
238
|
category: "calls",
|
package/package.json
CHANGED
package/src/limits.ts
CHANGED
package/src/quotas.ts
CHANGED
|
@@ -99,8 +99,8 @@ export const quotaConfigs = {
|
|
|
99
99
|
trackUsagePerBot: true
|
|
100
100
|
},
|
|
101
101
|
invocation_calls: {
|
|
102
|
-
name: '
|
|
103
|
-
description: 'Maximum number of
|
|
102
|
+
name: 'Messages',
|
|
103
|
+
description: 'Maximum number of messages sent to a bot in a month.',
|
|
104
104
|
default: 2_000,
|
|
105
105
|
kind: 'workspace',
|
|
106
106
|
category: 'calls',
|