@bpinternal/const 0.3.6 → 0.3.7

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/limits.d.ts CHANGED
@@ -38,7 +38,7 @@ export declare const limitConfigs: {
38
38
  readonly unit: "count";
39
39
  };
40
40
  readonly integration_version_count: {
41
- readonly value: 50;
41
+ readonly value: 200;
42
42
  readonly unit: "count";
43
43
  };
44
44
  readonly issue_event_item_payload_bytes: {
@@ -54,7 +54,7 @@ export declare const limitConfigs: {
54
54
  readonly unit: "bytes";
55
55
  };
56
56
  readonly state_definition_count: {
57
- readonly value: 10;
57
+ readonly value: 20;
58
58
  readonly unit: "count";
59
59
  };
60
60
  readonly state_item_payload_bytes: {
package/dist/limits.js CHANGED
@@ -39,7 +39,7 @@ exports.limitConfigs = {
39
39
  unit: 'count',
40
40
  },
41
41
  integration_version_count: {
42
- value: 50,
42
+ value: 200,
43
43
  unit: 'count',
44
44
  },
45
45
  issue_event_item_payload_bytes: {
@@ -55,7 +55,7 @@ exports.limitConfigs = {
55
55
  unit: 'bytes',
56
56
  },
57
57
  state_definition_count: {
58
- value: 10,
58
+ value: 20,
59
59
  unit: 'count',
60
60
  },
61
61
  state_item_payload_bytes: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpinternal/const",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
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",
@@ -8,7 +8,9 @@
8
8
  "scripts": {
9
9
  "build": "tsc -b tsconfig.json",
10
10
  "dev": "tsc -w",
11
- "clean": "rm -rf dist tsconfig.tsbuildinfo"
11
+ "clean": "rm -rf dist tsconfig.tsbuildinfo",
12
+ "check:lint": "eslint --max-warnings 0 --cache --ext .ts,.tsx .",
13
+ "fix:lint": "eslint --fix --cache --ext .ts,.tsx ."
12
14
  },
13
15
  "files": [
14
16
  "dist"