@bpinternal/const 0.3.3 → 0.3.4

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,2 @@
1
+ export type CancellationReason = (typeof CANCELLATION_REASONS)[number];
2
+ export declare const CANCELLATION_REASONS: readonly ["too_expensive", "not_using_enough", "missing_feature", "switched_tool", "technical_issues", "support_expectations", "temporary_need"];
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CANCELLATION_REASONS = void 0;
4
+ exports.CANCELLATION_REASONS = [
5
+ 'too_expensive',
6
+ 'not_using_enough',
7
+ 'missing_feature',
8
+ 'switched_tool',
9
+ 'technical_issues',
10
+ 'support_expectations',
11
+ 'temporary_need',
12
+ ];
package/dist/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from './prefixes';
4
4
  export * from './quotas';
5
5
  export * from './tags';
6
6
  export * from './workflow-names';
7
+ export * from './cancellation-reasons';
7
8
  export * from './billing-features';
8
9
  export * from './billing-products';
9
10
  export * from './billing-versions';
package/dist/index.js CHANGED
@@ -20,6 +20,7 @@ __exportStar(require("./prefixes"), exports);
20
20
  __exportStar(require("./quotas"), exports);
21
21
  __exportStar(require("./tags"), exports);
22
22
  __exportStar(require("./workflow-names"), exports);
23
+ __exportStar(require("./cancellation-reasons"), exports);
23
24
  // V4 Billing Constants
24
25
  __exportStar(require("./billing-features"), exports);
25
26
  __exportStar(require("./billing-products"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
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",