@bpinternal/const 0.0.12 → 0.0.13

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
@@ -110,6 +110,7 @@ var prefixToObjectMap = {
110
110
  audit: "audit",
111
111
  bak: "botApiKey",
112
112
  bot: "bot",
113
+ devbot: "devBot",
113
114
  card: "card",
114
115
  cfg: "configuration",
115
116
  channel: "channel",
@@ -120,6 +121,7 @@ var prefixToObjectMap = {
120
121
  iak: "integrationApiKey",
121
122
  int: "integration",
122
123
  intver: "integrationVersion",
124
+ devint: "devIntegration",
123
125
  iss: "issue",
124
126
  issevt: "issueEvent",
125
127
  kb: "knowledgeBase",
@@ -146,6 +148,7 @@ var objectToPrefixMap = {
146
148
  analytics: "anlytic",
147
149
  audit: "audit",
148
150
  bot: "bot",
151
+ devBot: "devbot",
149
152
  botApiKey: "bak",
150
153
  card: "card",
151
154
  channel: "channel",
@@ -157,6 +160,7 @@ var objectToPrefixMap = {
157
160
  integration: "int",
158
161
  integrationApiKey: "iak",
159
162
  integrationVersion: "intver",
163
+ devIntegration: "devint",
160
164
  issue: "iss",
161
165
  issueEvent: "issevt",
162
166
  knowledgeBase: "kb",
package/dist/index.mjs CHANGED
@@ -80,6 +80,7 @@ var prefixToObjectMap = {
80
80
  audit: "audit",
81
81
  bak: "botApiKey",
82
82
  bot: "bot",
83
+ devbot: "devBot",
83
84
  card: "card",
84
85
  cfg: "configuration",
85
86
  channel: "channel",
@@ -90,6 +91,7 @@ var prefixToObjectMap = {
90
91
  iak: "integrationApiKey",
91
92
  int: "integration",
92
93
  intver: "integrationVersion",
94
+ devint: "devIntegration",
93
95
  iss: "issue",
94
96
  issevt: "issueEvent",
95
97
  kb: "knowledgeBase",
@@ -116,6 +118,7 @@ var objectToPrefixMap = {
116
118
  analytics: "anlytic",
117
119
  audit: "audit",
118
120
  bot: "bot",
121
+ devBot: "devbot",
119
122
  botApiKey: "bak",
120
123
  card: "card",
121
124
  channel: "channel",
@@ -127,6 +130,7 @@ var objectToPrefixMap = {
127
130
  integration: "int",
128
131
  integrationApiKey: "iak",
129
132
  integrationVersion: "intver",
133
+ devIntegration: "devint",
130
134
  issue: "iss",
131
135
  issueEvent: "issevt",
132
136
  knowledgeBase: "kb",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Constant utilities for Botpress",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.mjs",
package/src/prefixes.ts CHANGED
@@ -4,6 +4,7 @@ export const prefixToObjectMap = {
4
4
  audit: 'audit',
5
5
  bak: 'botApiKey',
6
6
  bot: 'bot',
7
+ devbot: 'devBot',
7
8
  card: 'card',
8
9
  cfg: 'configuration',
9
10
  channel: 'channel',
@@ -14,6 +15,7 @@ export const prefixToObjectMap = {
14
15
  iak: 'integrationApiKey',
15
16
  int: 'integration',
16
17
  intver: 'integrationVersion',
18
+ devint: 'devIntegration',
17
19
  iss: 'issue',
18
20
  issevt: 'issueEvent',
19
21
  kb: 'knowledgeBase',
@@ -41,6 +43,7 @@ export const objectToPrefixMap: Reverser<typeof prefixToObjectMap> = {
41
43
  analytics: 'anlytic',
42
44
  audit: 'audit',
43
45
  bot: 'bot',
46
+ devBot: 'devbot',
44
47
  botApiKey: 'bak',
45
48
  card: 'card',
46
49
  channel: 'channel',
@@ -52,6 +55,7 @@ export const objectToPrefixMap: Reverser<typeof prefixToObjectMap> = {
52
55
  integration: 'int',
53
56
  integrationApiKey: 'iak',
54
57
  integrationVersion: 'intver',
58
+ devIntegration: 'devint',
55
59
  issue: 'iss',
56
60
  issueEvent: 'issevt',
57
61
  knowledgeBase: 'kb',