@ollang-dev/sdk 0.3.5 → 0.3.6

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/README.md CHANGED
@@ -34,7 +34,9 @@ const order = await ollang.orders.create({
34
34
  const status = await ollang.orders.get(order.id);
35
35
  ```
36
36
 
37
- ## Ollang Translation System
37
+ ## Ollang SDK (BETA)
38
+
39
+ > **Note:** Ollang SDK is currently in **BETA**. Features and APIs may change.
38
40
 
39
41
  Launch the built-in Ollang dashboard to scan and manage translatable content in your project:
40
42
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Translation Management System - Public API
2
+ * Ollang SDK - Public API
3
3
  */
4
4
  export { TranslationManagementSystem } from './tms.js';
5
5
  export { MultiContentTMS } from './multi-content-tms.js';
package/dist/tms/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**
3
- * Translation Management System - Public API
3
+ * Ollang SDK - Public API
4
4
  */
5
5
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
6
  if (k2 === undefined) k2 = k;
@@ -1456,7 +1456,7 @@ app.get('*', (_req, res) => {
1456
1456
  res.sendFile(path_1.default.join(__dirname, '../ui-dist/index.html'));
1457
1457
  });
1458
1458
  app.listen(PORT, () => {
1459
- logger_js_1.logger.info('🚀 Translation Management System starting...');
1459
+ logger_js_1.logger.info('🚀 Ollang SDK starting... (BETA)');
1460
1460
  logger_js_1.logger.info(`📦 Project: ${PROJECT_ROOT}`);
1461
1461
  logger_js_1.logger.info(`🌐 Control panel: http://localhost:${PORT}`);
1462
1462
  logger_js_1.logger.info(`💡 Opening in your browser...`);