@bpinternal/const 0.3.1 → 0.3.3
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/bot-use-cases.d.ts +7 -0
- package/dist/bot-use-cases.js +9 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/prefixes.d.ts +1 -0
- package/dist/prefixes.js +2 -0
- package/dist/workflow-names.d.ts +2 -0
- package/dist/workflow-names.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const BOT_USE_CASES: {
|
|
2
|
+
readonly CUSTOMER_SUPPORT: "customer-support";
|
|
3
|
+
readonly BRAND_ASSISTANT: "brand-assistant";
|
|
4
|
+
readonly PRODUCT_RECOMMENDATION: "product-recommendation";
|
|
5
|
+
readonly OTHER: "other";
|
|
6
|
+
};
|
|
7
|
+
export type BotUseCase = (typeof BOT_USE_CASES)[keyof typeof BOT_USE_CASES];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BOT_USE_CASES = void 0;
|
|
4
|
+
exports.BOT_USE_CASES = {
|
|
5
|
+
CUSTOMER_SUPPORT: 'customer-support',
|
|
6
|
+
BRAND_ASSISTANT: 'brand-assistant',
|
|
7
|
+
PRODUCT_RECOMMENDATION: 'product-recommendation',
|
|
8
|
+
OTHER: 'other',
|
|
9
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
export * from './bot-use-cases';
|
|
1
2
|
export * from './limits';
|
|
2
3
|
export * from './prefixes';
|
|
3
4
|
export * from './quotas';
|
|
4
5
|
export * from './tags';
|
|
6
|
+
export * from './workflow-names';
|
|
5
7
|
export * from './billing-features';
|
|
6
8
|
export * from './billing-products';
|
|
7
9
|
export * from './billing-versions';
|
package/dist/index.js
CHANGED
|
@@ -14,10 +14,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./bot-use-cases"), exports);
|
|
17
18
|
__exportStar(require("./limits"), exports);
|
|
18
19
|
__exportStar(require("./prefixes"), exports);
|
|
19
20
|
__exportStar(require("./quotas"), exports);
|
|
20
21
|
__exportStar(require("./tags"), exports);
|
|
22
|
+
__exportStar(require("./workflow-names"), exports);
|
|
21
23
|
// V4 Billing Constants
|
|
22
24
|
__exportStar(require("./billing-features"), exports);
|
|
23
25
|
__exportStar(require("./billing-products"), exports);
|
package/dist/prefixes.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export declare const prefixToObjectMap: {
|
|
|
47
47
|
readonly webhook: "webhook";
|
|
48
48
|
readonly wkspace: "workspace";
|
|
49
49
|
readonly wrkflow: "workflow";
|
|
50
|
+
readonly wkspacepf: "workspacePreference";
|
|
50
51
|
};
|
|
51
52
|
export declare const objectToPrefixMap: Reverser<typeof prefixToObjectMap>;
|
|
52
53
|
export type Prefixes = (typeof objectToPrefixMap)[keyof typeof objectToPrefixMap];
|
package/dist/prefixes.js
CHANGED
|
@@ -50,6 +50,7 @@ exports.prefixToObjectMap = {
|
|
|
50
50
|
webhook: 'webhook',
|
|
51
51
|
wkspace: 'workspace',
|
|
52
52
|
wrkflow: 'workflow',
|
|
53
|
+
wkspacepf: 'workspacePreference',
|
|
53
54
|
};
|
|
54
55
|
exports.objectToPrefixMap = {
|
|
55
56
|
account: 'accnt',
|
|
@@ -100,4 +101,5 @@ exports.objectToPrefixMap = {
|
|
|
100
101
|
webhook: 'webhook',
|
|
101
102
|
workflow: 'wrkflow',
|
|
102
103
|
workspace: 'wkspace',
|
|
104
|
+
workspacePreference: 'wkspacepf',
|
|
103
105
|
};
|