@bpinternal/const 0.3.1 → 0.3.2

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.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from './limits';
2
2
  export * from './prefixes';
3
3
  export * from './quotas';
4
4
  export * from './tags';
5
+ export * from './workflow-names';
5
6
  export * from './billing-features';
6
7
  export * from './billing-products';
7
8
  export * from './billing-versions';
package/dist/index.js CHANGED
@@ -18,6 +18,7 @@ __exportStar(require("./limits"), exports);
18
18
  __exportStar(require("./prefixes"), exports);
19
19
  __exportStar(require("./quotas"), exports);
20
20
  __exportStar(require("./tags"), exports);
21
+ __exportStar(require("./workflow-names"), exports);
21
22
  // V4 Billing Constants
22
23
  __exportStar(require("./billing-features"), exports);
23
24
  __exportStar(require("./billing-products"), exports);
@@ -0,0 +1,2 @@
1
+ export declare const WEBSITE_CRAWL_WORKFLOW = "website-crawl";
2
+ export declare const ONBOARDING_DEPLOY_WORKFLOW = "onboarding-deploy";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ONBOARDING_DEPLOY_WORKFLOW = exports.WEBSITE_CRAWL_WORKFLOW = void 0;
4
+ exports.WEBSITE_CRAWL_WORKFLOW = 'website-crawl';
5
+ exports.ONBOARDING_DEPLOY_WORKFLOW = 'onboarding-deploy';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
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",