@infisale-client/api-client 1.3.72 → 1.3.73
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/dist/api/api.d.ts +90 -3
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -717,7 +717,7 @@ export type IAiChatCollectionQueryParamsDateFieldEnum = typeof IAiChatCollection
|
|
|
717
717
|
*/
|
|
718
718
|
export interface IAiChatFinalizeRequest {
|
|
719
719
|
/**
|
|
720
|
-
*
|
|
720
|
+
* `false` (varsayılan) ÖNİZLEME: model cevabı `chat.result`e yazılır, sohbet OPEN kalır, plan oluşturulmaz. `true` ise saklanan sonuç (yoksa yeni bir çağrı) planlara dönüşür ve sohbet ancak plan yazımı BAŞARIRSA mühürlenir.
|
|
721
721
|
* @type {boolean}
|
|
722
722
|
* @memberof IAiChatFinalizeRequest
|
|
723
723
|
*/
|
|
@@ -728,6 +728,24 @@ export interface IAiChatFinalizeRequest {
|
|
|
728
728
|
* @memberof IAiChatFinalizeRequest
|
|
729
729
|
*/
|
|
730
730
|
'instruction'?: string;
|
|
731
|
+
/**
|
|
732
|
+
* Sohbet öncesi kilitlenen parametreler; modelin seçtiğini ezer.
|
|
733
|
+
* @type {Array<LanguageEnum>}
|
|
734
|
+
* @memberof IAiChatFinalizeRequest
|
|
735
|
+
*/
|
|
736
|
+
'languages'?: Array<LanguageEnum>;
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @type {string}
|
|
740
|
+
* @memberof IAiChatFinalizeRequest
|
|
741
|
+
*/
|
|
742
|
+
'template'?: string;
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @type {string}
|
|
746
|
+
* @memberof IAiChatFinalizeRequest
|
|
747
|
+
*/
|
|
748
|
+
'type'?: string;
|
|
731
749
|
}
|
|
732
750
|
/**
|
|
733
751
|
*
|
|
@@ -889,6 +907,75 @@ export interface IAiChatResponse {
|
|
|
889
907
|
[key: string]: any;
|
|
890
908
|
};
|
|
891
909
|
}
|
|
910
|
+
/**
|
|
911
|
+
* Koleksiyon ucunun satırı: `messages` ve `result` TAŞINMAZ. Sohbet listesi yalnızca başlık/durum/tarih gösterir; her satırda tüm konuşmayı taşımak listeyi sohbet sayısıyla değil toplam mesaj sayısıyla büyütüyordu.
|
|
912
|
+
* @export
|
|
913
|
+
* @interface IAiChatSummaryResponse
|
|
914
|
+
*/
|
|
915
|
+
export interface IAiChatSummaryResponse {
|
|
916
|
+
/**
|
|
917
|
+
*
|
|
918
|
+
* @type {string}
|
|
919
|
+
* @memberof IAiChatSummaryResponse
|
|
920
|
+
*/
|
|
921
|
+
'_id': string;
|
|
922
|
+
/**
|
|
923
|
+
*
|
|
924
|
+
* @type {number}
|
|
925
|
+
* @memberof IAiChatSummaryResponse
|
|
926
|
+
*/
|
|
927
|
+
'__v': number;
|
|
928
|
+
/**
|
|
929
|
+
*
|
|
930
|
+
* @type {string}
|
|
931
|
+
* @memberof IAiChatSummaryResponse
|
|
932
|
+
*/
|
|
933
|
+
'createdAt': string;
|
|
934
|
+
/**
|
|
935
|
+
*
|
|
936
|
+
* @type {string}
|
|
937
|
+
* @memberof IAiChatSummaryResponse
|
|
938
|
+
*/
|
|
939
|
+
'updatedAt': string;
|
|
940
|
+
/**
|
|
941
|
+
*
|
|
942
|
+
* @type {string}
|
|
943
|
+
* @memberof IAiChatSummaryResponse
|
|
944
|
+
*/
|
|
945
|
+
'company': string;
|
|
946
|
+
/**
|
|
947
|
+
*
|
|
948
|
+
* @type {string}
|
|
949
|
+
* @memberof IAiChatSummaryResponse
|
|
950
|
+
*/
|
|
951
|
+
'user'?: string;
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @type {AiChatPurposeEnum}
|
|
955
|
+
* @memberof IAiChatSummaryResponse
|
|
956
|
+
*/
|
|
957
|
+
'purpose': AiChatPurposeEnum;
|
|
958
|
+
/**
|
|
959
|
+
*
|
|
960
|
+
* @type {string}
|
|
961
|
+
* @memberof IAiChatSummaryResponse
|
|
962
|
+
*/
|
|
963
|
+
'title'?: string;
|
|
964
|
+
/**
|
|
965
|
+
*
|
|
966
|
+
* @type {AiChatStatusEnum}
|
|
967
|
+
* @memberof IAiChatSummaryResponse
|
|
968
|
+
*/
|
|
969
|
+
'status': AiChatStatusEnum;
|
|
970
|
+
/**
|
|
971
|
+
* Construct a type with a set of properties K of type T
|
|
972
|
+
* @type {{ [key: string]: any; }}
|
|
973
|
+
* @memberof IAiChatSummaryResponse
|
|
974
|
+
*/
|
|
975
|
+
'context'?: {
|
|
976
|
+
[key: string]: any;
|
|
977
|
+
};
|
|
978
|
+
}
|
|
892
979
|
/**
|
|
893
980
|
*
|
|
894
981
|
* @export
|
|
@@ -921,10 +1008,10 @@ export interface IAiChatsResponse {
|
|
|
921
1008
|
'totalPages': number;
|
|
922
1009
|
/**
|
|
923
1010
|
*
|
|
924
|
-
* @type {Array<
|
|
1011
|
+
* @type {Array<IAiChatSummaryResponse>}
|
|
925
1012
|
* @memberof IAiChatsResponse
|
|
926
1013
|
*/
|
|
927
|
-
'data': Array<
|
|
1014
|
+
'data': Array<IAiChatSummaryResponse>;
|
|
928
1015
|
}
|
|
929
1016
|
/**
|
|
930
1017
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.73",
|
|
4
4
|
"description": "api-client-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "cb3efd73f273e38671b447cca01d88242469e56e"
|
|
41
41
|
}
|