@xpert-ai/chatkit-types 0.0.7 → 0.0.8
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/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -587,6 +587,12 @@ declare type CustomApiConfig = {
|
|
|
587
587
|
* How attachments will be uploaded to your server. Required when attachments are enabled.
|
|
588
588
|
*/
|
|
589
589
|
uploadStrategy?: FileUploadStrategy;
|
|
590
|
+
/**
|
|
591
|
+
* The base URL for the XpertAI platform hosted API. Used for accessing xpert agents
|
|
592
|
+
* and other platform features.
|
|
593
|
+
*/
|
|
594
|
+
apiUrl: string;
|
|
595
|
+
xpertId?: string;
|
|
590
596
|
};
|
|
591
597
|
|
|
592
598
|
export declare type DatePicker = {
|
|
@@ -712,6 +718,12 @@ declare type HostedApiConfig = {
|
|
|
712
718
|
* Function to get a client token or refresh if the current token is expired.
|
|
713
719
|
*/
|
|
714
720
|
getClientSecret: (currentClientSecret: string | null) => Promise<string>;
|
|
721
|
+
/**
|
|
722
|
+
* The base URL for the XpertAI platform hosted API. Used for accessing xpert agents
|
|
723
|
+
* and other platform features.
|
|
724
|
+
*/
|
|
725
|
+
apiUrl: string;
|
|
726
|
+
xpertId?: string;
|
|
715
727
|
};
|
|
716
728
|
|
|
717
729
|
export declare type Icon = {
|