gentiq 0.7.28 → 0.7.29

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.
@@ -77,6 +77,8 @@ declare const _default: {
77
77
  "loading": "Loading...",
78
78
  "logging_in": "Logging in...",
79
79
  "signing_up": "Signing up...",
80
+ "auth_page_disabled_title": "The sign-in page is currently disabled.",
81
+ "auth_page_disabled_description": "Please contact the administrator for access.",
80
82
  "select_placeholder": "Select an option",
81
83
  "login_button": "Login",
82
84
  "signup_button": "Sign Up"
@@ -135,6 +137,10 @@ declare const _default: {
135
137
  "show_tool_details_help": "Enable this to show professional technical details of AI tools to users.",
136
138
  "show_settings": "Show settings icon for users",
137
139
  "show_settings_help": "Show a settings gear icon in the chat interface for user customization.",
140
+ "disable_signup": "Disable signup",
141
+ "disable_signup_help": "Hide the signup tab so users can only log in.",
142
+ "disable_auth_page": "Disable login/signup page",
143
+ "disable_auth_page_help": "Hide the entire auth page and prevent users from reaching login or signup forms.",
138
144
  "composer_attachments": "Enable File Attachments",
139
145
  "composer_attachments_help": "Allow users to upload and attach files to their messages.",
140
146
  "thread_actions_feedback": "Enable Feedback Buttons",
@@ -387,6 +393,7 @@ declare const _default: {
387
393
  "validation_error": "Invalid data provided. Please check your input.",
388
394
  "not_found": "The requested resource was not found."
389
395
  }
390
- };
396
+ }
397
+ ;
391
398
 
392
399
  export default _default;
@@ -76,6 +76,8 @@ declare const _default: {
76
76
  "surname_placeholder": "نام خانوادگی",
77
77
  "logging_in": "در حال ورود...",
78
78
  "signing_up": "در حال ثبت نام...",
79
+ "auth_page_disabled_title": "صفحه ورود غیرفعال شده است.",
80
+ "auth_page_disabled_description": "برای دسترسی با مدیر سامانه تماس بگیرید.",
79
81
  "select_placeholder": "انتخاب کنید",
80
82
  "login_button": "ورود",
81
83
  "signup_button": "ثبت نام"
@@ -134,6 +136,10 @@ declare const _default: {
134
136
  "show_tool_details_help": "برای نمایش جزئیات فنی و نحوه عملکرد ابزارهای هوش مصنوعی به کاربران، این گزینه را فعال کنید.",
135
137
  "show_settings": "نمایش آیکون تنظیمات برای کاربران",
136
138
  "show_settings_help": "نمایش چرخ‌دنده تنظیمات در محیط چت برای شخصی‌سازی توسط کاربر.",
139
+ "disable_signup": "غیرفعال‌سازی ثبت‌نام",
140
+ "disable_signup_help": "تب ثبت‌نام را مخفی می‌کند تا کاربران فقط بتوانند وارد شوند.",
141
+ "disable_auth_page": "غیرفعال‌سازی صفحه ورود/ثبت‌نام",
142
+ "disable_auth_page_help": "کل صفحه احراز هویت را مخفی می‌کند و دسترسی به فرم‌های ورود و ثبت‌نام را می‌بندد.",
137
143
  "composer_attachments": "فعال‌سازی پیوست فایل",
138
144
  "composer_attachments_help": "اجازه به کاربران برای آپلود و پیوست فایل به پیام‌ها.",
139
145
  "thread_actions_feedback": "فعال‌سازی دکمه‌های بازخورد",
@@ -386,6 +392,7 @@ declare const _default: {
386
392
  "validation_error": "داده‌های ارسالی معتبر نیستند. لطفاً ورودی‌های خود را بررسی کنید.",
387
393
  "not_found": "منبع مورد نظر یافت نشد."
388
394
  }
389
- };
395
+ }
396
+ ;
390
397
 
391
398
  export default _default;
@@ -319,6 +319,10 @@ export interface AppConfig {
319
319
  userMetadataFields?: UserMetadataField[];
320
320
  /** Whether to show the settings icon in the UI. */
321
321
  showSettings?: boolean;
322
+ /** Whether to hide the signup tab and keep login only. */
323
+ disableSignup?: boolean;
324
+ /** Whether to disable the entire login/signup page. */
325
+ disableAuthPage?: boolean;
322
326
  /** Display mode for the General settings tab. */
323
327
  settingsGeneralMode?: SettingsFieldMode;
324
328
  /** Display mode for the Profile settings tab. */
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "provenance": true
11
11
  },
12
12
  "description": "React UI library for the Gentiq AI framework.",
13
- "version": "0.7.28",
13
+ "version": "0.7.29",
14
14
  "type": "module",
15
15
  "files": [
16
16
  "dist"