@@ -15,23 +15,53 @@ export type ProxyConfig = {
1515 port : string ;
1616} ;
1717export interface WidgetConfig {
18- organizationName : string ;
19- openAIModel : string ;
20- apiKey : string ;
21- maxTokens : number ;
22- useDefault : boolean ;
23- proxyConfig : ProxyConfig ;
24- smartChatAssistantId : string ;
18+ smartChatAssistantId : string ; // This field will be deprecated in a future release. Please avoid using it.
19+ /**
20+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
21+ */
22+ organizationName : string ; // This field will be deprecated in a future release. Please avoid using it.
23+ /**
24+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
25+ */
26+ openAIModel : string ; // This field will be deprecated in a future release. Please avoid using it.
27+ /**
28+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
29+ */
30+ apiKey : string ; // This field will be deprecated in a future release. Please avoid using it.
31+ /**
32+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
33+ */
34+ maxTokens : number ; // This field will be deprecated in a future release. Please avoid using it.
35+ /**
36+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
37+ */
38+ useDefault : boolean ; // This field will be deprecated in a future release. Please avoid using it.
39+ /**
40+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
41+ */
42+ proxyConfig : ProxyConfig ; // This field will be deprecated in a future release. Please avoid using it.
2543}
2644
2745export interface AITranslateWidgetConfig extends WidgetConfig {
28- defaultLanguage : string ;
29- languages : string [ ] ;
46+ /**
47+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
48+ */
49+ defaultLanguage : string ; // This field will be deprecated in a future release. Please avoid using it.
50+ /**
51+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
52+ */
53+ languages : string [ ] ; // This field will be deprecated in a future release. Please avoid using it.
3054}
3155
3256export interface AIRephraseWidgetConfig extends WidgetConfig {
33- defaultTone : string ;
34- Tones : Tone [ ] ;
57+ /**
58+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
59+ */
60+ defaultTone : string ; // This field will be deprecated in a future release. Please avoid using it.
61+ /**
62+ * @deprecated This field will be deprecated in a future release. Please avoid using it.
63+ */
64+ Tones : Tone [ ] ; // This field will be deprecated in a future release. Please avoid using it.
3565}
3666
3767export interface QBUIKitConfig extends QBConfig {
0 commit comments