@arsedizioni/ars-utils 18.5.44 → 18.5.45
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.
|
@@ -134,7 +134,7 @@ export interface ClipperUserInfo {
|
|
|
134
134
|
hasTrial: boolean;
|
|
135
135
|
hasTeam: boolean;
|
|
136
136
|
hasAI: boolean;
|
|
137
|
-
|
|
137
|
+
hasAIAssistant: boolean;
|
|
138
138
|
channels: ClipperUserChannelInfo[];
|
|
139
139
|
firstChannelTrial: ClipperUserChannelInfo;
|
|
140
140
|
trialInfo?: ClipperUserTrialInfo | null;
|
|
@@ -815,6 +815,13 @@ export interface ClipperArchiveFilesDeleteParams {
|
|
|
815
815
|
destFolderId?: string | null;
|
|
816
816
|
files?: ClipperArchiveFileInfo[] | null;
|
|
817
817
|
}
|
|
818
|
+
export interface ClipperUserAIConfigInfo {
|
|
819
|
+
userId?: number | null;
|
|
820
|
+
openAIKey?: string | null;
|
|
821
|
+
openAIModel?: string | null;
|
|
822
|
+
openAIEndpoint?: string | null;
|
|
823
|
+
concernMeContext?: string | null;
|
|
824
|
+
}
|
|
818
825
|
export declare class ClipperUtils {
|
|
819
826
|
/**
|
|
820
827
|
* Check if a model is readable
|