openmates 0.16.0-alpha.3 → 0.16.0-alpha.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.
@@ -24724,6 +24724,7 @@ var INTEGRATION_SECRET_PREFIXES = [
24724
24724
  "SECRET__REVOLUT_BUSINESS__",
24725
24725
  "SECRET__INVOICE_"
24726
24726
  ];
24727
+ var CELERY_PROBE_CHECK_TIMEOUT_SECONDS = 15;
24727
24728
  var RUNTIME_CHECKS = {
24728
24729
  core: [
24729
24730
  { id: "compose.required_services", required: true, timeoutSeconds: 15 },
@@ -24731,8 +24732,8 @@ var RUNTIME_CHECKS = {
24731
24732
  { id: "core.database", required: true, timeoutSeconds: 10 },
24732
24733
  { id: "core.cache", required: true, timeoutSeconds: 10 },
24733
24734
  { id: "core.vault", required: true, timeoutSeconds: 10 },
24734
- { id: "core.worker_queue", required: true, timeoutSeconds: 15 },
24735
- { id: "core.scheduler_freshness", required: true, timeoutSeconds: 5 },
24735
+ { id: "core.worker_queue", required: true, timeoutSeconds: CELERY_PROBE_CHECK_TIMEOUT_SECONDS },
24736
+ { id: "core.scheduler_freshness", required: true, timeoutSeconds: CELERY_PROBE_CHECK_TIMEOUT_SECONDS },
24736
24737
  { id: "core.chat_plumbing", required: true, timeoutSeconds: 20 }
24737
24738
  ],
24738
24739
  upload: [
package/dist/cli.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  requireExactConfirmation,
9
9
  resolveProjectContext,
10
10
  serializeToYaml
11
- } from "./chunk-DPVVIUVO.js";
11
+ } from "./chunk-PLH6ROIR.js";
12
12
  import "./chunk-IWKP55ZB.js";
13
13
  import "./chunk-MLWBMJEN.js";
14
14
  export {
package/dist/index.js CHANGED
@@ -39,7 +39,7 @@ import {
39
39
  renderPlanList,
40
40
  renderSupportInfo,
41
41
  serializeToYaml
42
- } from "./chunk-DPVVIUVO.js";
42
+ } from "./chunk-PLH6ROIR.js";
43
43
  import "./chunk-IWKP55ZB.js";
44
44
  import "./chunk-MLWBMJEN.js";
45
45
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.16.0-alpha.3",
3
+ "version": "0.16.0-alpha.4",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",