@synity/bitrix-skills 1.3.8 → 1.3.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.3.10
4
+
5
+ ### Patch Changes
6
+
7
+ - feat(features): promote bx, bx-crm, bx-calendar from planned to active — now installable via `install --all`
8
+
9
+ ## 1.3.9
10
+
11
+ ### Patch Changes
12
+
13
+ - feat(license): auto-detect UUID tokens (from OTP email flow) — pass as `token` field instead of `key`
14
+
3
15
  ## 1.3.8
4
16
 
5
17
  ### Patch Changes
package/dist/cli.js CHANGED
@@ -1000,15 +1000,18 @@ function listFeatures(featuresDir) {
1000
1000
  // src/lib/license.ts
1001
1001
  init_esm_shims();
1002
1002
  var LICENSE_WORKER_URL = "https://license-gate.synity.workers.dev";
1003
+ var UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
1003
1004
  async function verifyLicense(key) {
1004
1005
  if (!key || key.trim() === "") {
1005
1006
  return { ok: true, tier: 0 };
1006
1007
  }
1008
+ const trimmed = key.trim();
1009
+ const isToken = UUID_RE.test(trimmed);
1007
1010
  try {
1008
1011
  const res = await fetch(`${LICENSE_WORKER_URL}/verify`, {
1009
1012
  method: "POST",
1010
1013
  headers: { "Content-Type": "application/json" },
1011
- body: JSON.stringify({ key: key.trim() }),
1014
+ body: JSON.stringify(isToken ? { token: trimmed } : { key: trimmed }),
1012
1015
  signal: AbortSignal.timeout(8e3)
1013
1016
  });
1014
1017
  if (!res.ok) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synity/bitrix-skills",
3
- "version": "1.3.8",
3
+ "version": "1.3.10",
4
4
  "description": "Multi-feature Bitrix24 tooling CLI for Synity projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -4,7 +4,7 @@
4
4
  "version": "1.0.0",
5
5
  "target": "global",
6
6
  "description": "Claude Code hub skill \u2014 routes to bx:crm, bx:task, bx:calendar. Install for discovery UX.",
7
- "status": "planned",
7
+ "status": "active",
8
8
  "requires": {},
9
9
  "tier": 0
10
10
  }
@@ -4,7 +4,7 @@
4
4
  "version": "1.0.0",
5
5
  "target": "global",
6
6
  "description": "Claude Code skill for Bitrix24 Calendar: meetings, reminders, team availability, CRM activity sync",
7
- "status": "planned",
7
+ "status": "active",
8
8
  "requires": {
9
9
  "env": [
10
10
  "BITRIX_WEBHOOK_URL"
@@ -4,7 +4,7 @@
4
4
  "version": "2.0.0",
5
5
  "target": "global",
6
6
  "description": "Claude Code skill for Bitrix24 CRM: contacts, companies, deals, leads, estimates, invoices, customer analysis, pipeline reports",
7
- "status": "planned",
7
+ "status": "active",
8
8
  "requires": {
9
9
  "mcp": [
10
10
  "bitrix-synity-mcp"