@bpinternal/const 0.3.2 → 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.
@@ -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,3 +1,4 @@
1
+ export * from './bot-use-cases';
1
2
  export * from './limits';
2
3
  export * from './prefixes';
3
4
  export * from './quotas';
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ 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);
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Shared constants for Skynet billing refactor (vendored copy of upstream packages/const)",
5
5
  "license": "UNLICENSED",
6
6
  "main": "dist/index.js",