@tolinax/ayoune-interfaces 2026.24.0 → 2026.26.0
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/data/modelsAndRights.js
CHANGED
|
@@ -855,8 +855,8 @@ const modelsAndRights = [
|
|
|
855
855
|
{
|
|
856
856
|
plural: "AILogs",
|
|
857
857
|
singular: "AILog",
|
|
858
|
-
module: "
|
|
859
|
-
right: "
|
|
858
|
+
module: "ai",
|
|
859
|
+
right: "ai.ailogs",
|
|
860
860
|
readOnly: true,
|
|
861
861
|
importable: false,
|
|
862
862
|
allowDuplicate: false,
|
|
@@ -895,8 +895,8 @@ const modelsAndRights = [
|
|
|
895
895
|
{
|
|
896
896
|
plural: "AIPrompts",
|
|
897
897
|
singular: "AIPrompt",
|
|
898
|
-
module: "
|
|
899
|
-
right: "
|
|
898
|
+
module: "ai",
|
|
899
|
+
right: "ai.aiprompts",
|
|
900
900
|
readOnly: false,
|
|
901
901
|
importable: false,
|
|
902
902
|
allowDuplicate: true,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { IDefaultFields } from "./IDefaultFields";
|
|
2
2
|
export interface IAIMessage extends IDefaultFields {
|
|
3
3
|
_customerID: ObjectId;
|
|
4
|
-
_clientID
|
|
5
|
-
_subID
|
|
4
|
+
_clientID?: ObjectId[];
|
|
5
|
+
_subID?: ObjectId[];
|
|
6
6
|
_consumerID?: ObjectId;
|
|
7
7
|
_conversation?: ObjectId;
|
|
8
8
|
_user?: ObjectId;
|