tsoft-cli 3.9.3 → 3.9.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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to T-Soft CLI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.9.4] - 2026-06-25
9
+
10
+ ### Fixed
11
+ - `theme push` now shows the deep link to the pushed theme again. The partner panel link moved to a `/r/{organizationUuid}/themes/{slug}` redirect format, but the CLI only recognised the older `/organization/{id}/themes/` path and fell back to the themes index. Both formats are now accepted.
12
+
8
13
  ## [3.9.3] - 2026-05-21
9
14
 
10
15
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsoft-cli",
3
- "version": "3.9.3",
3
+ "version": "3.9.4",
4
4
  "description": "Command-line tool for tsoft360 theme development and management",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -19,7 +19,7 @@ const PARTNERS_BASE = 'https://partners.tsoft360.com';
19
19
  const PARTNERS_THEMES_INDEX = `${PARTNERS_BASE}/themes`;
20
20
 
21
21
  function resolvePanelLink(partnerUrl) {
22
- if (typeof partnerUrl === 'string' && partnerUrl.includes('/organization/')) {
22
+ if (typeof partnerUrl === 'string' && /\/(r|organization)\/[^/]+\/themes\//.test(partnerUrl)) {
23
23
  return { url: partnerUrl, hintKey: 'push.partner_hint_theme' };
24
24
  }
25
25
  return { url: PARTNERS_THEMES_INDEX, hintKey: 'push.partner_hint' };