@rapidaai/react 1.1.48 → 1.1.50
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/{chunk-K6VHOUSP.mjs → chunk-2EMDIAFM.mjs} +178 -153
- package/dist/chunk-2EMDIAFM.mjs.map +1 -0
- package/dist/components/device-selector.d.mts +1 -1
- package/dist/components/device-selector.d.ts +1 -1
- package/dist/components/device-selector.js +177 -132
- package/dist/components/device-selector.js.map +1 -1
- package/dist/components/device-selector.mjs +1 -1
- package/dist/{device-selector-CsIo3daE.d.mts → device-selector-D2B4ipII.d.mts} +26 -31
- package/dist/{device-selector-CsIo3daE.d.ts → device-selector-D2B4ipII.d.ts} +26 -31
- package/dist/index.d.mts +3 -81
- package/dist/index.d.ts +3 -81
- package/dist/index.js +402 -176
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +297 -102
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-K6VHOUSP.mjs.map +0 -1
|
@@ -795,15 +795,11 @@ declare class AssistantConversationMessage extends jspb.Message {
|
|
|
795
795
|
getAssistantconversationid(): string;
|
|
796
796
|
setAssistantconversationid(value: string): void;
|
|
797
797
|
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
getRequest(): Message$1 | undefined;
|
|
801
|
-
setRequest(value?: Message$1): void;
|
|
798
|
+
getRole(): string;
|
|
799
|
+
setRole(value: string): void;
|
|
802
800
|
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
getResponse(): Message$1 | undefined;
|
|
806
|
-
setResponse(value?: Message$1): void;
|
|
801
|
+
getBody(): string;
|
|
802
|
+
setBody(value: string): void;
|
|
807
803
|
|
|
808
804
|
getSource(): string;
|
|
809
805
|
setSource(value: string): void;
|
|
@@ -858,8 +854,8 @@ declare namespace AssistantConversationMessage {
|
|
|
858
854
|
id: string,
|
|
859
855
|
messageid: string,
|
|
860
856
|
assistantconversationid: string,
|
|
861
|
-
|
|
862
|
-
|
|
857
|
+
role: string,
|
|
858
|
+
body: string,
|
|
863
859
|
source: string,
|
|
864
860
|
metricsList: Array<Metric.AsObject>,
|
|
865
861
|
status: string,
|
|
@@ -1708,11 +1704,6 @@ declare class AssistantMessagingResponse extends jspb.Message {
|
|
|
1708
1704
|
getAssistant(): AssistantConversationAssistantMessage | undefined;
|
|
1709
1705
|
setAssistant(value?: AssistantConversationAssistantMessage): void;
|
|
1710
1706
|
|
|
1711
|
-
hasMessage(): boolean;
|
|
1712
|
-
clearMessage(): void;
|
|
1713
|
-
getMessage(): AssistantConversationMessage | undefined;
|
|
1714
|
-
setMessage(value?: AssistantConversationMessage): void;
|
|
1715
|
-
|
|
1716
1707
|
hasAction(): boolean;
|
|
1717
1708
|
clearAction(): void;
|
|
1718
1709
|
getAction(): AssistantConversationAction | undefined;
|
|
@@ -1742,7 +1733,6 @@ declare namespace AssistantMessagingResponse {
|
|
|
1742
1733
|
interruption?: AssistantConversationInterruption.AsObject,
|
|
1743
1734
|
user?: AssistantConversationUserMessage.AsObject,
|
|
1744
1735
|
assistant?: AssistantConversationAssistantMessage.AsObject,
|
|
1745
|
-
message?: AssistantConversationMessage.AsObject,
|
|
1746
1736
|
action?: AssistantConversationAction.AsObject,
|
|
1747
1737
|
error?: Error.AsObject,
|
|
1748
1738
|
}
|
|
@@ -1753,7 +1743,6 @@ declare namespace AssistantMessagingResponse {
|
|
|
1753
1743
|
INTERRUPTION = 10,
|
|
1754
1744
|
USER = 11,
|
|
1755
1745
|
ASSISTANT = 12,
|
|
1756
|
-
MESSAGE = 13,
|
|
1757
1746
|
ACTION = 14,
|
|
1758
1747
|
ERROR = 15,
|
|
1759
1748
|
}
|
|
@@ -2566,6 +2555,9 @@ declare class AssistantWebpluginDeployment extends jspb.Message {
|
|
|
2566
2555
|
getIdealtimeoutmessage(): string;
|
|
2567
2556
|
setIdealtimeoutmessage(value: string): void;
|
|
2568
2557
|
|
|
2558
|
+
getIdealtimeoutbackoff(): string;
|
|
2559
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2560
|
+
|
|
2569
2561
|
serializeBinary(): Uint8Array;
|
|
2570
2562
|
toObject(includeInstance?: boolean): AssistantWebpluginDeployment.AsObject;
|
|
2571
2563
|
static toObject(includeInstance: boolean, msg: AssistantWebpluginDeployment): AssistantWebpluginDeployment.AsObject;
|
|
@@ -2596,6 +2588,7 @@ declare namespace AssistantWebpluginDeployment {
|
|
|
2596
2588
|
maxsessionduration: string,
|
|
2597
2589
|
idealtimeout: string,
|
|
2598
2590
|
idealtimeoutmessage: string,
|
|
2591
|
+
idealtimeoutbackoff: string,
|
|
2599
2592
|
}
|
|
2600
2593
|
}
|
|
2601
2594
|
|
|
@@ -2656,6 +2649,9 @@ declare class AssistantPhoneDeployment extends jspb.Message {
|
|
|
2656
2649
|
getIdealtimeoutmessage(): string;
|
|
2657
2650
|
setIdealtimeoutmessage(value: string): void;
|
|
2658
2651
|
|
|
2652
|
+
getIdealtimeoutbackoff(): string;
|
|
2653
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2654
|
+
|
|
2659
2655
|
serializeBinary(): Uint8Array;
|
|
2660
2656
|
toObject(includeInstance?: boolean): AssistantPhoneDeployment.AsObject;
|
|
2661
2657
|
static toObject(includeInstance: boolean, msg: AssistantPhoneDeployment): AssistantPhoneDeployment.AsObject;
|
|
@@ -2682,6 +2678,7 @@ declare namespace AssistantPhoneDeployment {
|
|
|
2682
2678
|
maxsessionduration: string,
|
|
2683
2679
|
idealtimeout: string,
|
|
2684
2680
|
idealtimeoutmessage: string,
|
|
2681
|
+
idealtimeoutbackoff: string,
|
|
2685
2682
|
}
|
|
2686
2683
|
}
|
|
2687
2684
|
|
|
@@ -2745,6 +2742,9 @@ declare class AssistantWhatsappDeployment extends jspb.Message {
|
|
|
2745
2742
|
getIdealtimeoutmessage(): string;
|
|
2746
2743
|
setIdealtimeoutmessage(value: string): void;
|
|
2747
2744
|
|
|
2745
|
+
getIdealtimeoutbackoff(): string;
|
|
2746
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2747
|
+
|
|
2748
2748
|
serializeBinary(): Uint8Array;
|
|
2749
2749
|
toObject(includeInstance?: boolean): AssistantWhatsappDeployment.AsObject;
|
|
2750
2750
|
static toObject(includeInstance: boolean, msg: AssistantWhatsappDeployment): AssistantWhatsappDeployment.AsObject;
|
|
@@ -2772,6 +2772,7 @@ declare namespace AssistantWhatsappDeployment {
|
|
|
2772
2772
|
maxsessionduration: string,
|
|
2773
2773
|
idealtimeout: string,
|
|
2774
2774
|
idealtimeoutmessage: string,
|
|
2775
|
+
idealtimeoutbackoff: string,
|
|
2775
2776
|
}
|
|
2776
2777
|
}
|
|
2777
2778
|
|
|
@@ -2827,6 +2828,9 @@ declare class AssistantDebuggerDeployment extends jspb.Message {
|
|
|
2827
2828
|
getIdealtimeoutmessage(): string;
|
|
2828
2829
|
setIdealtimeoutmessage(value: string): void;
|
|
2829
2830
|
|
|
2831
|
+
getIdealtimeoutbackoff(): string;
|
|
2832
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2833
|
+
|
|
2830
2834
|
serializeBinary(): Uint8Array;
|
|
2831
2835
|
toObject(includeInstance?: boolean): AssistantDebuggerDeployment.AsObject;
|
|
2832
2836
|
static toObject(includeInstance: boolean, msg: AssistantDebuggerDeployment): AssistantDebuggerDeployment.AsObject;
|
|
@@ -2852,6 +2856,7 @@ declare namespace AssistantDebuggerDeployment {
|
|
|
2852
2856
|
maxsessionduration: string,
|
|
2853
2857
|
idealtimeout: string,
|
|
2854
2858
|
idealtimeoutmessage: string,
|
|
2859
|
+
idealtimeoutbackoff: string,
|
|
2855
2860
|
}
|
|
2856
2861
|
}
|
|
2857
2862
|
|
|
@@ -2904,6 +2909,9 @@ declare class AssistantApiDeployment extends jspb.Message {
|
|
|
2904
2909
|
getIdealtimeoutmessage(): string;
|
|
2905
2910
|
setIdealtimeoutmessage(value: string): void;
|
|
2906
2911
|
|
|
2912
|
+
getIdealtimeoutbackoff(): string;
|
|
2913
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2914
|
+
|
|
2907
2915
|
serializeBinary(): Uint8Array;
|
|
2908
2916
|
toObject(includeInstance?: boolean): AssistantApiDeployment.AsObject;
|
|
2909
2917
|
static toObject(includeInstance: boolean, msg: AssistantApiDeployment): AssistantApiDeployment.AsObject;
|
|
@@ -2928,6 +2936,7 @@ declare namespace AssistantApiDeployment {
|
|
|
2928
2936
|
maxsessionduration: string,
|
|
2929
2937
|
idealtimeout: string,
|
|
2930
2938
|
idealtimeoutmessage: string,
|
|
2939
|
+
idealtimeoutbackoff: string,
|
|
2931
2940
|
}
|
|
2932
2941
|
}
|
|
2933
2942
|
|
|
@@ -14107,19 +14116,6 @@ interface ConversationAssistantMessage extends AssistantConversationAssistantMes
|
|
|
14107
14116
|
declare class ConversationAssistantMessage {
|
|
14108
14117
|
constructor(config?: AssistantConversationAssistantMessage);
|
|
14109
14118
|
}
|
|
14110
|
-
/**
|
|
14111
|
-
* user friendly interface for message
|
|
14112
|
-
*/
|
|
14113
|
-
interface ConversationMessage extends AssistantConversationMessage.AsObject {
|
|
14114
|
-
userMessage?: string;
|
|
14115
|
-
systemMessage?: string;
|
|
14116
|
-
}
|
|
14117
|
-
/**
|
|
14118
|
-
*
|
|
14119
|
-
*/
|
|
14120
|
-
declare class ConversationMessage {
|
|
14121
|
-
constructor(config?: AssistantConversationMessage);
|
|
14122
|
-
}
|
|
14123
14119
|
/**
|
|
14124
14120
|
* Callbacks for agent
|
|
14125
14121
|
*/
|
|
@@ -14128,7 +14124,6 @@ interface AgentCallback {
|
|
|
14128
14124
|
onInterrupt?: (args: AssistantConversationInterruption.AsObject | undefined) => void;
|
|
14129
14125
|
onAssistantMessage?: (args: ConversationAssistantMessage | undefined) => void;
|
|
14130
14126
|
onUserMessage?: (args: ConversationUserMessage | undefined) => void;
|
|
14131
|
-
onMessage?: (arg: ConversationMessage | undefined) => void;
|
|
14132
14127
|
onAction?: (arg?: AssistantConversationAction.AsObject) => void;
|
|
14133
14128
|
}
|
|
14134
14129
|
|
|
@@ -795,15 +795,11 @@ declare class AssistantConversationMessage extends jspb.Message {
|
|
|
795
795
|
getAssistantconversationid(): string;
|
|
796
796
|
setAssistantconversationid(value: string): void;
|
|
797
797
|
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
getRequest(): Message$1 | undefined;
|
|
801
|
-
setRequest(value?: Message$1): void;
|
|
798
|
+
getRole(): string;
|
|
799
|
+
setRole(value: string): void;
|
|
802
800
|
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
getResponse(): Message$1 | undefined;
|
|
806
|
-
setResponse(value?: Message$1): void;
|
|
801
|
+
getBody(): string;
|
|
802
|
+
setBody(value: string): void;
|
|
807
803
|
|
|
808
804
|
getSource(): string;
|
|
809
805
|
setSource(value: string): void;
|
|
@@ -858,8 +854,8 @@ declare namespace AssistantConversationMessage {
|
|
|
858
854
|
id: string,
|
|
859
855
|
messageid: string,
|
|
860
856
|
assistantconversationid: string,
|
|
861
|
-
|
|
862
|
-
|
|
857
|
+
role: string,
|
|
858
|
+
body: string,
|
|
863
859
|
source: string,
|
|
864
860
|
metricsList: Array<Metric.AsObject>,
|
|
865
861
|
status: string,
|
|
@@ -1708,11 +1704,6 @@ declare class AssistantMessagingResponse extends jspb.Message {
|
|
|
1708
1704
|
getAssistant(): AssistantConversationAssistantMessage | undefined;
|
|
1709
1705
|
setAssistant(value?: AssistantConversationAssistantMessage): void;
|
|
1710
1706
|
|
|
1711
|
-
hasMessage(): boolean;
|
|
1712
|
-
clearMessage(): void;
|
|
1713
|
-
getMessage(): AssistantConversationMessage | undefined;
|
|
1714
|
-
setMessage(value?: AssistantConversationMessage): void;
|
|
1715
|
-
|
|
1716
1707
|
hasAction(): boolean;
|
|
1717
1708
|
clearAction(): void;
|
|
1718
1709
|
getAction(): AssistantConversationAction | undefined;
|
|
@@ -1742,7 +1733,6 @@ declare namespace AssistantMessagingResponse {
|
|
|
1742
1733
|
interruption?: AssistantConversationInterruption.AsObject,
|
|
1743
1734
|
user?: AssistantConversationUserMessage.AsObject,
|
|
1744
1735
|
assistant?: AssistantConversationAssistantMessage.AsObject,
|
|
1745
|
-
message?: AssistantConversationMessage.AsObject,
|
|
1746
1736
|
action?: AssistantConversationAction.AsObject,
|
|
1747
1737
|
error?: Error.AsObject,
|
|
1748
1738
|
}
|
|
@@ -1753,7 +1743,6 @@ declare namespace AssistantMessagingResponse {
|
|
|
1753
1743
|
INTERRUPTION = 10,
|
|
1754
1744
|
USER = 11,
|
|
1755
1745
|
ASSISTANT = 12,
|
|
1756
|
-
MESSAGE = 13,
|
|
1757
1746
|
ACTION = 14,
|
|
1758
1747
|
ERROR = 15,
|
|
1759
1748
|
}
|
|
@@ -2566,6 +2555,9 @@ declare class AssistantWebpluginDeployment extends jspb.Message {
|
|
|
2566
2555
|
getIdealtimeoutmessage(): string;
|
|
2567
2556
|
setIdealtimeoutmessage(value: string): void;
|
|
2568
2557
|
|
|
2558
|
+
getIdealtimeoutbackoff(): string;
|
|
2559
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2560
|
+
|
|
2569
2561
|
serializeBinary(): Uint8Array;
|
|
2570
2562
|
toObject(includeInstance?: boolean): AssistantWebpluginDeployment.AsObject;
|
|
2571
2563
|
static toObject(includeInstance: boolean, msg: AssistantWebpluginDeployment): AssistantWebpluginDeployment.AsObject;
|
|
@@ -2596,6 +2588,7 @@ declare namespace AssistantWebpluginDeployment {
|
|
|
2596
2588
|
maxsessionduration: string,
|
|
2597
2589
|
idealtimeout: string,
|
|
2598
2590
|
idealtimeoutmessage: string,
|
|
2591
|
+
idealtimeoutbackoff: string,
|
|
2599
2592
|
}
|
|
2600
2593
|
}
|
|
2601
2594
|
|
|
@@ -2656,6 +2649,9 @@ declare class AssistantPhoneDeployment extends jspb.Message {
|
|
|
2656
2649
|
getIdealtimeoutmessage(): string;
|
|
2657
2650
|
setIdealtimeoutmessage(value: string): void;
|
|
2658
2651
|
|
|
2652
|
+
getIdealtimeoutbackoff(): string;
|
|
2653
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2654
|
+
|
|
2659
2655
|
serializeBinary(): Uint8Array;
|
|
2660
2656
|
toObject(includeInstance?: boolean): AssistantPhoneDeployment.AsObject;
|
|
2661
2657
|
static toObject(includeInstance: boolean, msg: AssistantPhoneDeployment): AssistantPhoneDeployment.AsObject;
|
|
@@ -2682,6 +2678,7 @@ declare namespace AssistantPhoneDeployment {
|
|
|
2682
2678
|
maxsessionduration: string,
|
|
2683
2679
|
idealtimeout: string,
|
|
2684
2680
|
idealtimeoutmessage: string,
|
|
2681
|
+
idealtimeoutbackoff: string,
|
|
2685
2682
|
}
|
|
2686
2683
|
}
|
|
2687
2684
|
|
|
@@ -2745,6 +2742,9 @@ declare class AssistantWhatsappDeployment extends jspb.Message {
|
|
|
2745
2742
|
getIdealtimeoutmessage(): string;
|
|
2746
2743
|
setIdealtimeoutmessage(value: string): void;
|
|
2747
2744
|
|
|
2745
|
+
getIdealtimeoutbackoff(): string;
|
|
2746
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2747
|
+
|
|
2748
2748
|
serializeBinary(): Uint8Array;
|
|
2749
2749
|
toObject(includeInstance?: boolean): AssistantWhatsappDeployment.AsObject;
|
|
2750
2750
|
static toObject(includeInstance: boolean, msg: AssistantWhatsappDeployment): AssistantWhatsappDeployment.AsObject;
|
|
@@ -2772,6 +2772,7 @@ declare namespace AssistantWhatsappDeployment {
|
|
|
2772
2772
|
maxsessionduration: string,
|
|
2773
2773
|
idealtimeout: string,
|
|
2774
2774
|
idealtimeoutmessage: string,
|
|
2775
|
+
idealtimeoutbackoff: string,
|
|
2775
2776
|
}
|
|
2776
2777
|
}
|
|
2777
2778
|
|
|
@@ -2827,6 +2828,9 @@ declare class AssistantDebuggerDeployment extends jspb.Message {
|
|
|
2827
2828
|
getIdealtimeoutmessage(): string;
|
|
2828
2829
|
setIdealtimeoutmessage(value: string): void;
|
|
2829
2830
|
|
|
2831
|
+
getIdealtimeoutbackoff(): string;
|
|
2832
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2833
|
+
|
|
2830
2834
|
serializeBinary(): Uint8Array;
|
|
2831
2835
|
toObject(includeInstance?: boolean): AssistantDebuggerDeployment.AsObject;
|
|
2832
2836
|
static toObject(includeInstance: boolean, msg: AssistantDebuggerDeployment): AssistantDebuggerDeployment.AsObject;
|
|
@@ -2852,6 +2856,7 @@ declare namespace AssistantDebuggerDeployment {
|
|
|
2852
2856
|
maxsessionduration: string,
|
|
2853
2857
|
idealtimeout: string,
|
|
2854
2858
|
idealtimeoutmessage: string,
|
|
2859
|
+
idealtimeoutbackoff: string,
|
|
2855
2860
|
}
|
|
2856
2861
|
}
|
|
2857
2862
|
|
|
@@ -2904,6 +2909,9 @@ declare class AssistantApiDeployment extends jspb.Message {
|
|
|
2904
2909
|
getIdealtimeoutmessage(): string;
|
|
2905
2910
|
setIdealtimeoutmessage(value: string): void;
|
|
2906
2911
|
|
|
2912
|
+
getIdealtimeoutbackoff(): string;
|
|
2913
|
+
setIdealtimeoutbackoff(value: string): void;
|
|
2914
|
+
|
|
2907
2915
|
serializeBinary(): Uint8Array;
|
|
2908
2916
|
toObject(includeInstance?: boolean): AssistantApiDeployment.AsObject;
|
|
2909
2917
|
static toObject(includeInstance: boolean, msg: AssistantApiDeployment): AssistantApiDeployment.AsObject;
|
|
@@ -2928,6 +2936,7 @@ declare namespace AssistantApiDeployment {
|
|
|
2928
2936
|
maxsessionduration: string,
|
|
2929
2937
|
idealtimeout: string,
|
|
2930
2938
|
idealtimeoutmessage: string,
|
|
2939
|
+
idealtimeoutbackoff: string,
|
|
2931
2940
|
}
|
|
2932
2941
|
}
|
|
2933
2942
|
|
|
@@ -14107,19 +14116,6 @@ interface ConversationAssistantMessage extends AssistantConversationAssistantMes
|
|
|
14107
14116
|
declare class ConversationAssistantMessage {
|
|
14108
14117
|
constructor(config?: AssistantConversationAssistantMessage);
|
|
14109
14118
|
}
|
|
14110
|
-
/**
|
|
14111
|
-
* user friendly interface for message
|
|
14112
|
-
*/
|
|
14113
|
-
interface ConversationMessage extends AssistantConversationMessage.AsObject {
|
|
14114
|
-
userMessage?: string;
|
|
14115
|
-
systemMessage?: string;
|
|
14116
|
-
}
|
|
14117
|
-
/**
|
|
14118
|
-
*
|
|
14119
|
-
*/
|
|
14120
|
-
declare class ConversationMessage {
|
|
14121
|
-
constructor(config?: AssistantConversationMessage);
|
|
14122
|
-
}
|
|
14123
14119
|
/**
|
|
14124
14120
|
* Callbacks for agent
|
|
14125
14121
|
*/
|
|
@@ -14128,7 +14124,6 @@ interface AgentCallback {
|
|
|
14128
14124
|
onInterrupt?: (args: AssistantConversationInterruption.AsObject | undefined) => void;
|
|
14129
14125
|
onAssistantMessage?: (args: ConversationAssistantMessage | undefined) => void;
|
|
14130
14126
|
onUserMessage?: (args: ConversationUserMessage | undefined) => void;
|
|
14131
|
-
onMessage?: (arg: ConversationMessage | undefined) => void;
|
|
14132
14127
|
onAction?: (arg?: AssistantConversationAction.AsObject) => void;
|
|
14133
14128
|
}
|
|
14134
14129
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as Content, V as VoiceAgent, F as Feedback, A as AssistantDebuggerDeployment, a as AssistantWebpluginDeployment, b as AssistantApiDeployment, c as Assistant, R as RapidaSource, M as Message, d as ConnectionConfig, e as ClientAuthInfo, U as UserAuthInfo, I as IndexKnowledgeDocumentResponse, f as InvokeRequest, g as InvokeResponse, h as AuthenticateResponse, i as VerifyTokenResponse, j as ForgotPasswordResponse, k as CreatePasswordResponse, l as ChangePasswordRequest, m as ChangePasswordResponse, G as GetUserResponse, n as UpdateUserResponse, o as GetAllUserResponse, p as GeneralConnectResponse, q as Criteria, r as GetConnectorFilesResponse, s as CreateOrganizationResponse, t as UpdateOrganizationResponse, u as GetOrganizationResponse, v as GetAllAssistantResponse, w as UpdateAssistantVersionRequest, x as GetAssistantResponse, y as GetAssistantRequest, z as CreateAssistantRequest, B as GetAllAssistantMessageResponse, D as GetAllMessageResponse, E as GetAllConversationMessageResponse, H as CreateAssistantDeploymentRequest, J as GetAssistantDebuggerDeploymentResponse, K as GetAssistantDeploymentRequest, L as GetAssistantApiDeploymentResponse, N as GetAssistantWebpluginDeploymentResponse, O as GetAssistantPhoneDeploymentResponse, P as GetAssistantWhatsappDeploymentResponse, Q as GetAllAssistantWebhookResponse, S as GetAssistantWebhookResponse, T as GetAssistantConversationRequest, W as GetAssistantConversationResponse, X as GetAllAssistantAnalysisResponse, Y as GetAssistantAnalysisResponse, Z as GetAllAssistantWebhookLogResponse, _ as GetAssistantWebhookLogResponse, $ as GetAllAssistantToolResponse, a0 as Metadata, a1 as GetAssistantToolResponse, a2 as GetAllAssistantKnowledgeResponse, a3 as GetAssistantKnowledgeResponse, a4 as GetAssistantToolLogRequest, a5 as GetAssistantToolLogResponse, a6 as GetAllAssistantToolLogRequest, a7 as GetAllAssistantToolLogResponse, a8 as CreateAssistantProviderRequest, a9 as GetAssistantProviderResponse, aa as GetAllAssistantProviderResponse, ab as GetAllAuditLogResponse, ac as GetAuditLogResponse, ad as GetAllEndpointResponse, ae as UpdateEndpointVersionResponse, af as GetAllEndpointProviderModelResponse, ag as GetEndpointResponse, ah as EndpointProviderModelAttribute, ai as CreateEndpointProviderModelResponse, aj as EndpointAttribute, ak as CreateEndpointResponse, al as EndpointRetryConfiguration, am as EndpointCacheConfiguration, an as CreateEndpointRetryConfigurationResponse, ao as CreateEndpointCacheConfigurationResponse, ap as GetAllEndpointLogResponse, aq as GetEndpointLogResponse, ar as CreateProviderCredentialRequest, as as GetCredentialResponse, at as GetAllOrganizationCredentialResponse, au as AssistantMessagingRequest, av as AssistantMessagingResponse, aw as CreateMessageMetricRequest, ax as CreateMessageMetricResponse, ay as CreateConversationMetricRequest, az as CreateConversationMetricResponse, aA as GetAllAssistantConversationResponse, aB as CreateKnowledgeRequest, aC as CreateKnowledgeResponse, aD as GetKnowledgeResponse, aE as GetAllKnowledgeResponse, aF as CreateKnowledgeDocumentResponse, aG as GetAllKnowledgeDocumentResponse, aH as GetAllKnowledgeDocumentSegmentResponse, aI as BaseResponse, aJ as GetKnowledgeLogRequest, aK as GetKnowledgeLogResponse, aL as GetAllKnowledgeLogRequest, aM as GetAllKnowledgeLogResponse, aN as AddUsersToProjectResponse, aO as CreateProjectResponse, aP as UpdateProjectResponse, aQ as GetAllProjectResponse, aR as GetProjectResponse, aS as ArchiveProjectResponse, aT as GetAllProjectCredentialResponse, aU as CreateProjectCredentialResponse, aV as Error$1, aW as Metric, aX as Message$1, aY as CreatePhoneCallRequest, aZ as CreatePhoneCallResponse, a_ as CreateBulkPhoneCallRequest, a$ as CreateBulkPhoneCallResponse, b0 as GetAllAssistantTelemetryRequest, b1 as GetAllAssistantTelemetryResponse, b2 as GetNotificationSettingRequest, b3 as NotificationSettingResponse, b4 as UpdateNotificationSettingRequest } from './device-selector-
|
|
2
|
-
export { cG as AddUsersToProjectRequest, ba as AgentCallback, b9 as AgentConfig, dv as AggregatedEndpointAnalytics, cH as ArchiveProjectRequest, cQ as Argument, c4 as AssistantAnalysis, c$ as AssistantConversation, d8 as AssistantConversationAssistantMessage, d5 as AssistantConversationConfiguration, c_ as AssistantConversationContext, d6 as AssistantConversationInterruption, cZ as AssistantConversationMessage, d2 as AssistantConversationRecording, d9 as AssistantConversationTelephonyEvent, d7 as AssistantConversationUserMessage, d3 as AssistantDefinition, bI as AssistantDeploymentService, bJ as AssistantDeploymentServiceClient, bQ as AssistantKnowledge, dS as AssistantPhoneDeployment, el as AssistantProviderAgentkit, ek as AssistantProviderModel, em as AssistantProviderWebsocket, da as AssistantService, db as AssistantServiceClient, dK as AssistantTool, dL as AssistantToolLog, de as AssistantWebhook, df as AssistantWebhookLog, dT as AssistantWhatsappDeployment, bW as AuditLog, dU as AuditLoggingService, dV as AuditLoggingServiceClient, cf as AuthenticateRequest, cl as Authentication, ec as AuthenticationService, ef as AuthenticationServiceClient, cq as AuthorizeRequest, b6 as Channel, bK as ConnectService, bL as ConnectServiceClient, b5 as ConnectionState, c5 as CreateAssistantAnalysisRequest, bR as CreateAssistantKnowledgeRequest, e6 as CreateAssistantTagRequest, dM as CreateAssistantToolRequest, dg as CreateAssistantWebhookRequest, dD as CreateEndpointCacheConfigurationRequest, dx as CreateEndpointProviderModelRequest, dt as CreateEndpointRequest, dC as CreateEndpointRetryConfigurationRequest, dE as CreateEndpointTagRequest, d$ as CreateKnowledgeDocumentRequest, dY as CreateKnowledgeTagRequest, bZ as CreateMetadataRequest, b_ as CreateMetadataResponse, cx as CreateOrganizationRequest, co as CreatePasswordRequest, cJ as CreateProjectCredentialRequest, cC as CreateProjectRequest, ep as DEBUGGER_SOURCE, c8 as DeleteAssistantAnalysisRequest, bU as DeleteAssistantKnowledgeRequest, e7 as DeleteAssistantRequest, dP as DeleteAssistantToolRequest, dj as DeleteAssistantWebhookRequest, e4 as DeleteKnowledgeDocumentSegmentRequest, bO as Deployment, dR as DeploymentAudioProvider, bP as DeploymentClient, ei as DeviceSelectorComponent, dq as DocumentService, dr as DocumentServiceClient, dw as Endpoint, ca as EndpointDefinition, dH as EndpointLog, du as EndpointProviderModel, bG as EndpointService, bH as EndpointServiceClient, ck as FeaturePermission, cL as FieldSelector, cn as ForgotPasswordRequest, dF as ForkEndpointRequest, cV as FunctionCall, dn as GeneralConnectRequest, c9 as GetAllAssistantAnalysisRequest, d0 as GetAllAssistantConversationRequest, bV as GetAllAssistantKnowledgeRequest, e9 as GetAllAssistantMessageRequest, en as GetAllAssistantProviderRequest, e8 as GetAllAssistantRequest, dQ as GetAllAssistantToolRequest, dl as GetAllAssistantWebhookLogRequest, dk as GetAllAssistantWebhookRequest, bX as GetAllAuditLogRequest, d1 as GetAllConversationMessageRequest, dI as GetAllEndpointLogRequest, dA as GetAllEndpointProviderModelRequest, dz as GetAllEndpointRequest, d_ as GetAllKnowledgeDocumentRequest, e1 as GetAllKnowledgeDocumentSegmentRequest, dW as GetAllKnowledgeRequest, ea as GetAllMessageRequest, c2 as GetAllOrganizationCredentialRequest, cK as GetAllProjectCredentialRequest, cF as GetAllProjectRequest, cw as GetAllUserRequest, c7 as GetAssistantAnalysisRequest, bT as GetAssistantKnowledgeRequest, dO as GetAssistantToolRequest, dm as GetAssistantWebhookLogRequest, di as GetAssistantWebhookRequest, bY as GetAuditLogRequest, dp as GetConnectorFilesRequest, c3 as GetCredentialRequest, dJ as GetEndpointLogRequest, dy as GetEndpointRequest, dX as GetKnowledgeRequest, cz as GetOrganizationRequest, cE as GetProjectRequest, ct as GetUserRequest, bg as HEADER_API_KEY, bh as HEADER_AUTH_ID, br as HEADER_COLOR_DEPTH, bv as HEADER_CONNECTION_EFFECTIVE_TYPE, bu as HEADER_CONNECTION_TYPE, bw as HEADER_COOKIES_ENABLED, bs as HEADER_DEVICE_MEMORY, bx as HEADER_DO_NOT_TRACK, bd as HEADER_ENVIRONMENT_KEY, bt as HEADER_HARDWARE_CONCURRENCY, bk as HEADER_LANGUAGE, bA as HEADER_LATITUDE, bB as HEADER_LONGITUDE, bl as HEADER_PLATFORM, bi as HEADER_PROJECT_ID, by as HEADER_REFERRER, bf as HEADER_REGION_KEY, bz as HEADER_REMOTE_URL, bn as HEADER_SCREEN_HEIGHT, bm as HEADER_SCREEN_WIDTH, be as HEADER_SOURCE_KEY, bq as HEADER_TIMEZONE, bj as HEADER_USER_AGENT, bp as HEADER_WINDOW_HEIGHT, bo as HEADER_WINDOW_WIDTH, ds as IndexKnowledgeDocumentRequest, b7 as InputOptions, cW as Knowledge, dZ as KnowledgeDocument, e0 as KnowledgeDocumentSegment, e5 as KnowledgeLog, b$ as KnowledgeService, c0 as KnowledgeServiceClient, bb as MessageRole, bc as MessageStatus, ej as NotificationSetting, cO as Ordering, cT as Organization, ci as OrganizationRole, ed as OrganizationService, eg as OrganizationServiceClient, b8 as OutputOptions, er as PHONE_CALL_SOURCE, cM as Paginate, cN as Paginated, cd as ProbeRequest, ce as ProbeResponse, cB as Project, cI as ProjectCredential, cj as ProjectRole, ee as ProjectService, eh as ProjectServiceClient, cg as RegisterUserRequest, eq as SDK_SOURCE, cr as ScopeAuthorizeRequest, cm as ScopedAuthentication, cs as ScopedAuthenticationResponse, cv as SocialAuthenticationRequest, cS as Tag, dc as TalkService, dd as TalkServiceClient, d4 as Telemetry, cY as TextChatCompletePrompt, cX as TextPrompt, ch as Token, cU as ToolCall, c6 as UpdateAssistantAnalysisRequest, eb as UpdateAssistantDetailRequest, bS as UpdateAssistantKnowledgeRequest, dN as UpdateAssistantToolRequest, dh as UpdateAssistantWebhookRequest, cA as UpdateBillingInformationRequest, dG as UpdateEndpointDetailRequest, dB as UpdateEndpointVersionRequest, e2 as UpdateKnowledgeDetailRequest, e3 as UpdateKnowledgeDocumentSegmentRequest, cy as UpdateOrganizationRequest, cD as UpdateProjectRequest, cb as UpdateRequest, cc as UpdateResponse, cu as UpdateUserRequest, cP as User, cR as Variable, c1 as VaultCredential, bM as VaultService, bN as VaultServiceClient, cp as VerifyTokenRequest, eo as WEB_PLUGIN_SOURCE, es as WHATSAPP_SOURCE, bD as WithAuthContext, bF as WithClientContext, bC as WithPlatform, eu as fromStr, bE as getClientInfo, et as getRapidaSourceValue } from './device-selector-
|
|
1
|
+
import { C as Content, V as VoiceAgent, F as Feedback, A as AssistantDebuggerDeployment, a as AssistantWebpluginDeployment, b as AssistantApiDeployment, c as Assistant, R as RapidaSource, M as Message, d as ConnectionConfig, e as ClientAuthInfo, U as UserAuthInfo, I as IndexKnowledgeDocumentResponse, f as InvokeRequest, g as InvokeResponse, h as AuthenticateResponse, i as VerifyTokenResponse, j as ForgotPasswordResponse, k as CreatePasswordResponse, l as ChangePasswordRequest, m as ChangePasswordResponse, G as GetUserResponse, n as UpdateUserResponse, o as GetAllUserResponse, p as GeneralConnectResponse, q as Criteria, r as GetConnectorFilesResponse, s as CreateOrganizationResponse, t as UpdateOrganizationResponse, u as GetOrganizationResponse, v as GetAllAssistantResponse, w as UpdateAssistantVersionRequest, x as GetAssistantResponse, y as GetAssistantRequest, z as CreateAssistantRequest, B as GetAllAssistantMessageResponse, D as GetAllMessageResponse, E as GetAllConversationMessageResponse, H as CreateAssistantDeploymentRequest, J as GetAssistantDebuggerDeploymentResponse, K as GetAssistantDeploymentRequest, L as GetAssistantApiDeploymentResponse, N as GetAssistantWebpluginDeploymentResponse, O as GetAssistantPhoneDeploymentResponse, P as GetAssistantWhatsappDeploymentResponse, Q as GetAllAssistantWebhookResponse, S as GetAssistantWebhookResponse, T as GetAssistantConversationRequest, W as GetAssistantConversationResponse, X as GetAllAssistantAnalysisResponse, Y as GetAssistantAnalysisResponse, Z as GetAllAssistantWebhookLogResponse, _ as GetAssistantWebhookLogResponse, $ as GetAllAssistantToolResponse, a0 as Metadata, a1 as GetAssistantToolResponse, a2 as GetAllAssistantKnowledgeResponse, a3 as GetAssistantKnowledgeResponse, a4 as GetAssistantToolLogRequest, a5 as GetAssistantToolLogResponse, a6 as GetAllAssistantToolLogRequest, a7 as GetAllAssistantToolLogResponse, a8 as CreateAssistantProviderRequest, a9 as GetAssistantProviderResponse, aa as GetAllAssistantProviderResponse, ab as GetAllAuditLogResponse, ac as GetAuditLogResponse, ad as GetAllEndpointResponse, ae as UpdateEndpointVersionResponse, af as GetAllEndpointProviderModelResponse, ag as GetEndpointResponse, ah as EndpointProviderModelAttribute, ai as CreateEndpointProviderModelResponse, aj as EndpointAttribute, ak as CreateEndpointResponse, al as EndpointRetryConfiguration, am as EndpointCacheConfiguration, an as CreateEndpointRetryConfigurationResponse, ao as CreateEndpointCacheConfigurationResponse, ap as GetAllEndpointLogResponse, aq as GetEndpointLogResponse, ar as CreateProviderCredentialRequest, as as GetCredentialResponse, at as GetAllOrganizationCredentialResponse, au as AssistantMessagingRequest, av as AssistantMessagingResponse, aw as CreateMessageMetricRequest, ax as CreateMessageMetricResponse, ay as CreateConversationMetricRequest, az as CreateConversationMetricResponse, aA as GetAllAssistantConversationResponse, aB as CreateKnowledgeRequest, aC as CreateKnowledgeResponse, aD as GetKnowledgeResponse, aE as GetAllKnowledgeResponse, aF as CreateKnowledgeDocumentResponse, aG as GetAllKnowledgeDocumentResponse, aH as GetAllKnowledgeDocumentSegmentResponse, aI as BaseResponse, aJ as GetKnowledgeLogRequest, aK as GetKnowledgeLogResponse, aL as GetAllKnowledgeLogRequest, aM as GetAllKnowledgeLogResponse, aN as AddUsersToProjectResponse, aO as CreateProjectResponse, aP as UpdateProjectResponse, aQ as GetAllProjectResponse, aR as GetProjectResponse, aS as ArchiveProjectResponse, aT as GetAllProjectCredentialResponse, aU as CreateProjectCredentialResponse, aV as Error$1, aW as Metric, aX as Message$1, aY as CreatePhoneCallRequest, aZ as CreatePhoneCallResponse, a_ as CreateBulkPhoneCallRequest, a$ as CreateBulkPhoneCallResponse, b0 as GetAllAssistantTelemetryRequest, b1 as GetAllAssistantTelemetryResponse, b2 as GetNotificationSettingRequest, b3 as NotificationSettingResponse, b4 as UpdateNotificationSettingRequest } from './device-selector-D2B4ipII.mjs';
|
|
2
|
+
export { cG as AddUsersToProjectRequest, ba as AgentCallback, b9 as AgentConfig, dv as AggregatedEndpointAnalytics, cH as ArchiveProjectRequest, cQ as Argument, c4 as AssistantAnalysis, c$ as AssistantConversation, d8 as AssistantConversationAssistantMessage, d5 as AssistantConversationConfiguration, c_ as AssistantConversationContext, d6 as AssistantConversationInterruption, cZ as AssistantConversationMessage, d2 as AssistantConversationRecording, d9 as AssistantConversationTelephonyEvent, d7 as AssistantConversationUserMessage, d3 as AssistantDefinition, bI as AssistantDeploymentService, bJ as AssistantDeploymentServiceClient, bQ as AssistantKnowledge, dS as AssistantPhoneDeployment, el as AssistantProviderAgentkit, ek as AssistantProviderModel, em as AssistantProviderWebsocket, da as AssistantService, db as AssistantServiceClient, dK as AssistantTool, dL as AssistantToolLog, de as AssistantWebhook, df as AssistantWebhookLog, dT as AssistantWhatsappDeployment, bW as AuditLog, dU as AuditLoggingService, dV as AuditLoggingServiceClient, cf as AuthenticateRequest, cl as Authentication, ec as AuthenticationService, ef as AuthenticationServiceClient, cq as AuthorizeRequest, b6 as Channel, bK as ConnectService, bL as ConnectServiceClient, b5 as ConnectionState, c5 as CreateAssistantAnalysisRequest, bR as CreateAssistantKnowledgeRequest, e6 as CreateAssistantTagRequest, dM as CreateAssistantToolRequest, dg as CreateAssistantWebhookRequest, dD as CreateEndpointCacheConfigurationRequest, dx as CreateEndpointProviderModelRequest, dt as CreateEndpointRequest, dC as CreateEndpointRetryConfigurationRequest, dE as CreateEndpointTagRequest, d$ as CreateKnowledgeDocumentRequest, dY as CreateKnowledgeTagRequest, bZ as CreateMetadataRequest, b_ as CreateMetadataResponse, cx as CreateOrganizationRequest, co as CreatePasswordRequest, cJ as CreateProjectCredentialRequest, cC as CreateProjectRequest, ep as DEBUGGER_SOURCE, c8 as DeleteAssistantAnalysisRequest, bU as DeleteAssistantKnowledgeRequest, e7 as DeleteAssistantRequest, dP as DeleteAssistantToolRequest, dj as DeleteAssistantWebhookRequest, e4 as DeleteKnowledgeDocumentSegmentRequest, bO as Deployment, dR as DeploymentAudioProvider, bP as DeploymentClient, ei as DeviceSelectorComponent, dq as DocumentService, dr as DocumentServiceClient, dw as Endpoint, ca as EndpointDefinition, dH as EndpointLog, du as EndpointProviderModel, bG as EndpointService, bH as EndpointServiceClient, ck as FeaturePermission, cL as FieldSelector, cn as ForgotPasswordRequest, dF as ForkEndpointRequest, cV as FunctionCall, dn as GeneralConnectRequest, c9 as GetAllAssistantAnalysisRequest, d0 as GetAllAssistantConversationRequest, bV as GetAllAssistantKnowledgeRequest, e9 as GetAllAssistantMessageRequest, en as GetAllAssistantProviderRequest, e8 as GetAllAssistantRequest, dQ as GetAllAssistantToolRequest, dl as GetAllAssistantWebhookLogRequest, dk as GetAllAssistantWebhookRequest, bX as GetAllAuditLogRequest, d1 as GetAllConversationMessageRequest, dI as GetAllEndpointLogRequest, dA as GetAllEndpointProviderModelRequest, dz as GetAllEndpointRequest, d_ as GetAllKnowledgeDocumentRequest, e1 as GetAllKnowledgeDocumentSegmentRequest, dW as GetAllKnowledgeRequest, ea as GetAllMessageRequest, c2 as GetAllOrganizationCredentialRequest, cK as GetAllProjectCredentialRequest, cF as GetAllProjectRequest, cw as GetAllUserRequest, c7 as GetAssistantAnalysisRequest, bT as GetAssistantKnowledgeRequest, dO as GetAssistantToolRequest, dm as GetAssistantWebhookLogRequest, di as GetAssistantWebhookRequest, bY as GetAuditLogRequest, dp as GetConnectorFilesRequest, c3 as GetCredentialRequest, dJ as GetEndpointLogRequest, dy as GetEndpointRequest, dX as GetKnowledgeRequest, cz as GetOrganizationRequest, cE as GetProjectRequest, ct as GetUserRequest, bg as HEADER_API_KEY, bh as HEADER_AUTH_ID, br as HEADER_COLOR_DEPTH, bv as HEADER_CONNECTION_EFFECTIVE_TYPE, bu as HEADER_CONNECTION_TYPE, bw as HEADER_COOKIES_ENABLED, bs as HEADER_DEVICE_MEMORY, bx as HEADER_DO_NOT_TRACK, bd as HEADER_ENVIRONMENT_KEY, bt as HEADER_HARDWARE_CONCURRENCY, bk as HEADER_LANGUAGE, bA as HEADER_LATITUDE, bB as HEADER_LONGITUDE, bl as HEADER_PLATFORM, bi as HEADER_PROJECT_ID, by as HEADER_REFERRER, bf as HEADER_REGION_KEY, bz as HEADER_REMOTE_URL, bn as HEADER_SCREEN_HEIGHT, bm as HEADER_SCREEN_WIDTH, be as HEADER_SOURCE_KEY, bq as HEADER_TIMEZONE, bj as HEADER_USER_AGENT, bp as HEADER_WINDOW_HEIGHT, bo as HEADER_WINDOW_WIDTH, ds as IndexKnowledgeDocumentRequest, b7 as InputOptions, cW as Knowledge, dZ as KnowledgeDocument, e0 as KnowledgeDocumentSegment, e5 as KnowledgeLog, b$ as KnowledgeService, c0 as KnowledgeServiceClient, bb as MessageRole, bc as MessageStatus, ej as NotificationSetting, cO as Ordering, cT as Organization, ci as OrganizationRole, ed as OrganizationService, eg as OrganizationServiceClient, b8 as OutputOptions, er as PHONE_CALL_SOURCE, cM as Paginate, cN as Paginated, cd as ProbeRequest, ce as ProbeResponse, cB as Project, cI as ProjectCredential, cj as ProjectRole, ee as ProjectService, eh as ProjectServiceClient, cg as RegisterUserRequest, eq as SDK_SOURCE, cr as ScopeAuthorizeRequest, cm as ScopedAuthentication, cs as ScopedAuthenticationResponse, cv as SocialAuthenticationRequest, cS as Tag, dc as TalkService, dd as TalkServiceClient, d4 as Telemetry, cY as TextChatCompletePrompt, cX as TextPrompt, ch as Token, cU as ToolCall, c6 as UpdateAssistantAnalysisRequest, eb as UpdateAssistantDetailRequest, bS as UpdateAssistantKnowledgeRequest, dN as UpdateAssistantToolRequest, dh as UpdateAssistantWebhookRequest, cA as UpdateBillingInformationRequest, dG as UpdateEndpointDetailRequest, dB as UpdateEndpointVersionRequest, e2 as UpdateKnowledgeDetailRequest, e3 as UpdateKnowledgeDocumentSegmentRequest, cy as UpdateOrganizationRequest, cD as UpdateProjectRequest, cb as UpdateRequest, cc as UpdateResponse, cu as UpdateUserRequest, cP as User, cR as Variable, c1 as VaultCredential, bM as VaultService, bN as VaultServiceClient, cp as VerifyTokenRequest, eo as WEB_PLUGIN_SOURCE, es as WHATSAPP_SOURCE, bD as WithAuthContext, bF as WithClientContext, bC as WithPlatform, eu as fromStr, bE as getClientInfo, et as getRapidaSourceValue } from './device-selector-D2B4ipII.mjs';
|
|
3
3
|
import * as jspb from 'google-protobuf';
|
|
4
4
|
import { Map } from 'google-protobuf';
|
|
5
5
|
import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb';
|
|
@@ -2155,50 +2155,6 @@ declare class AzureService {
|
|
|
2155
2155
|
static readonly GetModeration: AzureServiceGetModeration;
|
|
2156
2156
|
}
|
|
2157
2157
|
|
|
2158
|
-
type GoogleServiceEmbedding = {
|
|
2159
|
-
readonly methodName: string;
|
|
2160
|
-
readonly service: typeof GoogleService;
|
|
2161
|
-
readonly requestStream: false;
|
|
2162
|
-
readonly responseStream: false;
|
|
2163
|
-
readonly requestType: typeof EmbeddingRequest;
|
|
2164
|
-
readonly responseType: typeof EmbeddingResponse;
|
|
2165
|
-
};
|
|
2166
|
-
|
|
2167
|
-
type GoogleServiceChat = {
|
|
2168
|
-
readonly methodName: string;
|
|
2169
|
-
readonly service: typeof GoogleService;
|
|
2170
|
-
readonly requestStream: false;
|
|
2171
|
-
readonly responseStream: false;
|
|
2172
|
-
readonly requestType: typeof ChatRequest;
|
|
2173
|
-
readonly responseType: typeof ChatResponse;
|
|
2174
|
-
};
|
|
2175
|
-
|
|
2176
|
-
type GoogleServiceStreamChat = {
|
|
2177
|
-
readonly methodName: string;
|
|
2178
|
-
readonly service: typeof GoogleService;
|
|
2179
|
-
readonly requestStream: false;
|
|
2180
|
-
readonly responseStream: true;
|
|
2181
|
-
readonly requestType: typeof ChatRequest;
|
|
2182
|
-
readonly responseType: typeof ChatResponse;
|
|
2183
|
-
};
|
|
2184
|
-
|
|
2185
|
-
type GoogleServiceVerifyCredential = {
|
|
2186
|
-
readonly methodName: string;
|
|
2187
|
-
readonly service: typeof GoogleService;
|
|
2188
|
-
readonly requestStream: false;
|
|
2189
|
-
readonly responseStream: false;
|
|
2190
|
-
readonly requestType: typeof VerifyCredentialRequest;
|
|
2191
|
-
readonly responseType: typeof VerifyCredentialResponse;
|
|
2192
|
-
};
|
|
2193
|
-
|
|
2194
|
-
declare class GoogleService {
|
|
2195
|
-
static readonly serviceName: string;
|
|
2196
|
-
static readonly Embedding: GoogleServiceEmbedding;
|
|
2197
|
-
static readonly Chat: GoogleServiceChat;
|
|
2198
|
-
static readonly StreamChat: GoogleServiceStreamChat;
|
|
2199
|
-
static readonly VerifyCredential: GoogleServiceVerifyCredential;
|
|
2200
|
-
}
|
|
2201
|
-
|
|
2202
2158
|
type ReplicateServiceChat = {
|
|
2203
2159
|
readonly methodName: string;
|
|
2204
2160
|
readonly service: typeof ReplicateService;
|
|
@@ -2597,40 +2553,6 @@ declare class AzureServiceClient {
|
|
|
2597
2553
|
): UnaryResponse;
|
|
2598
2554
|
}
|
|
2599
2555
|
|
|
2600
|
-
declare class GoogleServiceClient {
|
|
2601
|
-
readonly serviceHost: string;
|
|
2602
|
-
|
|
2603
|
-
constructor(serviceHost: string, options?: grpc.RpcOptions);
|
|
2604
|
-
embedding(
|
|
2605
|
-
requestMessage: EmbeddingRequest,
|
|
2606
|
-
metadata: grpc.Metadata,
|
|
2607
|
-
callback: (error: ServiceError|null, responseMessage: EmbeddingResponse|null) => void
|
|
2608
|
-
): UnaryResponse;
|
|
2609
|
-
embedding(
|
|
2610
|
-
requestMessage: EmbeddingRequest,
|
|
2611
|
-
callback: (error: ServiceError|null, responseMessage: EmbeddingResponse|null) => void
|
|
2612
|
-
): UnaryResponse;
|
|
2613
|
-
chat(
|
|
2614
|
-
requestMessage: ChatRequest,
|
|
2615
|
-
metadata: grpc.Metadata,
|
|
2616
|
-
callback: (error: ServiceError|null, responseMessage: ChatResponse|null) => void
|
|
2617
|
-
): UnaryResponse;
|
|
2618
|
-
chat(
|
|
2619
|
-
requestMessage: ChatRequest,
|
|
2620
|
-
callback: (error: ServiceError|null, responseMessage: ChatResponse|null) => void
|
|
2621
|
-
): UnaryResponse;
|
|
2622
|
-
streamChat(requestMessage: ChatRequest, metadata?: grpc.Metadata): ResponseStream<ChatResponse>;
|
|
2623
|
-
verifyCredential(
|
|
2624
|
-
requestMessage: VerifyCredentialRequest,
|
|
2625
|
-
metadata: grpc.Metadata,
|
|
2626
|
-
callback: (error: ServiceError|null, responseMessage: VerifyCredentialResponse|null) => void
|
|
2627
|
-
): UnaryResponse;
|
|
2628
|
-
verifyCredential(
|
|
2629
|
-
requestMessage: VerifyCredentialRequest,
|
|
2630
|
-
callback: (error: ServiceError|null, responseMessage: VerifyCredentialResponse|null) => void
|
|
2631
|
-
): UnaryResponse;
|
|
2632
|
-
}
|
|
2633
|
-
|
|
2634
2556
|
declare class ReplicateServiceClient {
|
|
2635
2557
|
readonly serviceHost: string;
|
|
2636
2558
|
|
|
@@ -2930,4 +2852,4 @@ declare function UpdateNotificationSetting(clientCfg: ConnectionConfig, request:
|
|
|
2930
2852
|
*/
|
|
2931
2853
|
declare function GetNotificationSetting(clientCfg: ConnectionConfig, request: GetNotificationSettingRequest, auth?: ClientAuthInfo | UserAuthInfo): Promise<NotificationSettingResponse>;
|
|
2932
2854
|
|
|
2933
|
-
export { AddUsersToProject, AddUsersToProjectResponse, type AgentDeployment, AgentEvent, AnthropicService, AnthropicServiceClient, AnyToBool, AnyToFloat, AnyToInt32, AnyToJSON, AnyToString, ArchiveProjectResponse, Assistant, AssistantApiDeployment, AssistantDebuggerDeployment, AssistantMessagingRequest, AssistantMessagingResponse, AssistantTalk, AssistantWebpluginDeployment, AuthenticateResponse, AuthenticateUser, AuthorizeUser, AzureService, AzureServiceClient, BaseResponse, BedrockService, BedrockServiceClient, type BidirectionalStream, BoolToAny, BytesToAny, ChangePassword, ChangePasswordRequest, ChangePasswordResponse, ChatRequest, ChatResponse, CohereService, CohereServiceClient, ConnectionConfig, Content, CreateAnalysis, CreateAssistant, CreateAssistantApiDeployment, CreateAssistantDebuggerDeployment, CreateAssistantDeploymentRequest, CreateAssistantKnowledge, CreateAssistantPhoneDeployment, CreateAssistantProvider, CreateAssistantProviderRequest, CreateAssistantRequest, CreateAssistantTag, CreateAssistantTool, CreateAssistantWebpluginDeployment, CreateAssistantWhatsappDeployment, CreateBulkPhoneCall, CreateBulkPhoneCallRequest, CreateBulkPhoneCallResponse, CreateConversationMetric, CreateConversationMetricRequest, CreateConversationMetricResponse, CreateEndpoint, CreateEndpointCacheConfiguration, CreateEndpointCacheConfigurationResponse, CreateEndpointProviderModel, CreateEndpointProviderModelResponse, CreateEndpointResponse, CreateEndpointRetryConfiguration, CreateEndpointRetryConfigurationResponse, CreateEndpointTag, CreateKnowledge, CreateKnowledgeDocument, CreateKnowledgeDocumentResponse, CreateKnowledgeRequest, CreateKnowledgeResponse, CreateKnowledgeTag, CreateMessageMetric, CreateMessageMetricRequest, CreateMessageMetricResponse, CreateOrganization, CreateOrganizationResponse, CreatePassword, CreatePasswordResponse, CreatePhoneCall, CreatePhoneCallRequest, CreatePhoneCallResponse, CreateProject, CreateProjectCredential, CreateProjectCredentialResponse, CreateProjectResponse, CreateProviderCredentialRequest, CreateProviderKey, CreateWebhook, Credential, Criteria, DeepInfraService, DeepInfraServiceClient, DeleteAssistant, DeleteAssistantAnalysis, DeleteAssistantKnowledge, DeleteAssistantTool, DeleteAssistantWebhook, DeleteKnowledgeDocumentSegment, DeleteProject, DeleteProviderKey, Embedding, EmbeddingRequest, EmbeddingResponse, EndpointAttribute, EndpointCacheConfiguration, EndpointProviderModelAttribute, EndpointRetryConfiguration, Error$1 as Error, Feedback, FloatToAny, ForgotPassword, ForgotPasswordResponse, FunctionDefinition, FunctionParameter, FunctionParameterProperty, GeneralConnect, GeneralConnectResponse, GetActivities, GetActivity, GetAllAssistant, GetAllAssistantAnalysis, GetAllAssistantAnalysisResponse, GetAllAssistantConversation, GetAllAssistantConversationMessage, GetAllAssistantConversationResponse, GetAllAssistantKnowledge, GetAllAssistantKnowledgeResponse, GetAllAssistantMessageResponse, GetAllAssistantProvider, GetAllAssistantProviderResponse, GetAllAssistantResponse, GetAllAssistantTelemetry, GetAllAssistantTelemetryRequest, GetAllAssistantTelemetryResponse, GetAllAssistantTool, GetAllAssistantToolLog, GetAllAssistantToolLogRequest, GetAllAssistantToolLogResponse, GetAllAssistantToolResponse, GetAllAssistantWebhook, GetAllAssistantWebhookLogResponse, GetAllAssistantWebhookResponse, GetAllAuditLogResponse, GetAllConversationMessageResponse, GetAllEndpoint, GetAllEndpointLog, GetAllEndpointLogResponse, GetAllEndpointProviderModel, GetAllEndpointProviderModelResponse, GetAllEndpointResponse, GetAllKnowledgeBases, GetAllKnowledgeDocument, GetAllKnowledgeDocumentResponse, GetAllKnowledgeDocumentSegment, GetAllKnowledgeDocumentSegmentResponse, GetAllKnowledgeLog, GetAllKnowledgeLogRequest, GetAllKnowledgeLogResponse, GetAllKnowledgeResponse, GetAllMessageResponse, GetAllOrganizationCredential, GetAllOrganizationCredentialResponse, GetAllProject, GetAllProjectCredential, GetAllProjectCredentialResponse, GetAllProjectResponse, GetAllUser, GetAllUserResponse, GetAllWebhookLog, GetAssistant, GetAssistantAnalysis, GetAssistantAnalysisResponse, GetAssistantApiDeployment, GetAssistantApiDeploymentResponse, GetAssistantConversation, GetAssistantConversationRequest, GetAssistantConversationResponse, GetAssistantDebuggerDeployment, GetAssistantDebuggerDeploymentResponse, GetAssistantDeploymentRequest, GetAssistantKnowledge, GetAssistantKnowledgeResponse, GetAssistantMessages, GetAssistantPhoneDeployment, GetAssistantPhoneDeploymentResponse, GetAssistantProviderResponse, GetAssistantRequest, GetAssistantResponse, GetAssistantTool, GetAssistantToolLog, GetAssistantToolLogRequest, GetAssistantToolLogResponse, GetAssistantToolResponse, GetAssistantWebhook, GetAssistantWebhookLogResponse, GetAssistantWebhookResponse, GetAssistantWebpluginDeployment, GetAssistantWebpluginDeploymentResponse, GetAssistantWhatsappDeployment, GetAssistantWhatsappDeploymentResponse, GetAuditLogResponse, GetConnectorFiles, GetConnectorFilesResponse, GetCredentialResponse, GetDeployment, GetEndpoint, GetEndpointLog, GetEndpointLogResponse, GetEndpointResponse, GetKnowledgeBase, GetKnowledgeLog, GetKnowledgeLogRequest, GetKnowledgeLogResponse, GetKnowledgeResponse, GetMessages, GetModerationRequest, GetModerationResponse, GetNotificationSetting, GetNotificationSettingRequest, GetOrganization, GetOrganizationResponse, GetProject, GetProjectResponse, GetUser, GetUserResponse, GetWebhookLog, Github, Google,
|
|
2855
|
+
export { AddUsersToProject, AddUsersToProjectResponse, type AgentDeployment, AgentEvent, AnthropicService, AnthropicServiceClient, AnyToBool, AnyToFloat, AnyToInt32, AnyToJSON, AnyToString, ArchiveProjectResponse, Assistant, AssistantApiDeployment, AssistantDebuggerDeployment, AssistantMessagingRequest, AssistantMessagingResponse, AssistantTalk, AssistantWebpluginDeployment, AuthenticateResponse, AuthenticateUser, AuthorizeUser, AzureService, AzureServiceClient, BaseResponse, BedrockService, BedrockServiceClient, type BidirectionalStream, BoolToAny, BytesToAny, ChangePassword, ChangePasswordRequest, ChangePasswordResponse, ChatRequest, ChatResponse, CohereService, CohereServiceClient, ConnectionConfig, Content, CreateAnalysis, CreateAssistant, CreateAssistantApiDeployment, CreateAssistantDebuggerDeployment, CreateAssistantDeploymentRequest, CreateAssistantKnowledge, CreateAssistantPhoneDeployment, CreateAssistantProvider, CreateAssistantProviderRequest, CreateAssistantRequest, CreateAssistantTag, CreateAssistantTool, CreateAssistantWebpluginDeployment, CreateAssistantWhatsappDeployment, CreateBulkPhoneCall, CreateBulkPhoneCallRequest, CreateBulkPhoneCallResponse, CreateConversationMetric, CreateConversationMetricRequest, CreateConversationMetricResponse, CreateEndpoint, CreateEndpointCacheConfiguration, CreateEndpointCacheConfigurationResponse, CreateEndpointProviderModel, CreateEndpointProviderModelResponse, CreateEndpointResponse, CreateEndpointRetryConfiguration, CreateEndpointRetryConfigurationResponse, CreateEndpointTag, CreateKnowledge, CreateKnowledgeDocument, CreateKnowledgeDocumentResponse, CreateKnowledgeRequest, CreateKnowledgeResponse, CreateKnowledgeTag, CreateMessageMetric, CreateMessageMetricRequest, CreateMessageMetricResponse, CreateOrganization, CreateOrganizationResponse, CreatePassword, CreatePasswordResponse, CreatePhoneCall, CreatePhoneCallRequest, CreatePhoneCallResponse, CreateProject, CreateProjectCredential, CreateProjectCredentialResponse, CreateProjectResponse, CreateProviderCredentialRequest, CreateProviderKey, CreateWebhook, Credential, Criteria, DeepInfraService, DeepInfraServiceClient, DeleteAssistant, DeleteAssistantAnalysis, DeleteAssistantKnowledge, DeleteAssistantTool, DeleteAssistantWebhook, DeleteKnowledgeDocumentSegment, DeleteProject, DeleteProviderKey, Embedding, EmbeddingRequest, EmbeddingResponse, EndpointAttribute, EndpointCacheConfiguration, EndpointProviderModelAttribute, EndpointRetryConfiguration, Error$1 as Error, Feedback, FloatToAny, ForgotPassword, ForgotPasswordResponse, FunctionDefinition, FunctionParameter, FunctionParameterProperty, GeneralConnect, GeneralConnectResponse, GetActivities, GetActivity, GetAllAssistant, GetAllAssistantAnalysis, GetAllAssistantAnalysisResponse, GetAllAssistantConversation, GetAllAssistantConversationMessage, GetAllAssistantConversationResponse, GetAllAssistantKnowledge, GetAllAssistantKnowledgeResponse, GetAllAssistantMessageResponse, GetAllAssistantProvider, GetAllAssistantProviderResponse, GetAllAssistantResponse, GetAllAssistantTelemetry, GetAllAssistantTelemetryRequest, GetAllAssistantTelemetryResponse, GetAllAssistantTool, GetAllAssistantToolLog, GetAllAssistantToolLogRequest, GetAllAssistantToolLogResponse, GetAllAssistantToolResponse, GetAllAssistantWebhook, GetAllAssistantWebhookLogResponse, GetAllAssistantWebhookResponse, GetAllAuditLogResponse, GetAllConversationMessageResponse, GetAllEndpoint, GetAllEndpointLog, GetAllEndpointLogResponse, GetAllEndpointProviderModel, GetAllEndpointProviderModelResponse, GetAllEndpointResponse, GetAllKnowledgeBases, GetAllKnowledgeDocument, GetAllKnowledgeDocumentResponse, GetAllKnowledgeDocumentSegment, GetAllKnowledgeDocumentSegmentResponse, GetAllKnowledgeLog, GetAllKnowledgeLogRequest, GetAllKnowledgeLogResponse, GetAllKnowledgeResponse, GetAllMessageResponse, GetAllOrganizationCredential, GetAllOrganizationCredentialResponse, GetAllProject, GetAllProjectCredential, GetAllProjectCredentialResponse, GetAllProjectResponse, GetAllUser, GetAllUserResponse, GetAllWebhookLog, GetAssistant, GetAssistantAnalysis, GetAssistantAnalysisResponse, GetAssistantApiDeployment, GetAssistantApiDeploymentResponse, GetAssistantConversation, GetAssistantConversationRequest, GetAssistantConversationResponse, GetAssistantDebuggerDeployment, GetAssistantDebuggerDeploymentResponse, GetAssistantDeploymentRequest, GetAssistantKnowledge, GetAssistantKnowledgeResponse, GetAssistantMessages, GetAssistantPhoneDeployment, GetAssistantPhoneDeploymentResponse, GetAssistantProviderResponse, GetAssistantRequest, GetAssistantResponse, GetAssistantTool, GetAssistantToolLog, GetAssistantToolLogRequest, GetAssistantToolLogResponse, GetAssistantToolResponse, GetAssistantWebhook, GetAssistantWebhookLogResponse, GetAssistantWebhookResponse, GetAssistantWebpluginDeployment, GetAssistantWebpluginDeploymentResponse, GetAssistantWhatsappDeployment, GetAssistantWhatsappDeploymentResponse, GetAuditLogResponse, GetConnectorFiles, GetConnectorFilesResponse, GetCredentialResponse, GetDeployment, GetEndpoint, GetEndpointLog, GetEndpointLogResponse, GetEndpointResponse, GetKnowledgeBase, GetKnowledgeLog, GetKnowledgeLogRequest, GetKnowledgeLogResponse, GetKnowledgeResponse, GetMessages, GetModerationRequest, GetModerationResponse, GetNotificationSetting, GetNotificationSettingRequest, GetOrganization, GetOrganizationResponse, GetProject, GetProjectResponse, GetUser, GetUserResponse, GetWebhookLog, Github, Google, HuggingfaceService, HuggingfaceServiceClient, IndexKnowledgeDocument, IndexKnowledgeDocumentResponse, Int32ToAny, Invoke, InvokeRequest, InvokeResponse, JSONToAny, Linkedin, MapToObject, MediaDeviceFailure, Message, Metadata, Metric, MistralService, MistralServiceClient, Moderation, NotificationSettingResponse, OpenAiService, OpenAiServiceClient, Message$1 as ProtoMessage, RapidaSource, RegisterUser, ReplicateService, ReplicateServiceClient, type RequestStream, Reranking, RerankingRequest, RerankingResponse, type ResponseStream$1 as ResponseStream, type ServiceError$1 as ServiceError, StabilityAiService, StabilityAiServiceClient, type Status$1 as Status, StringArrayToAny, StringToAny, TogetherAiService, TogetherAiServiceClient, ToolDefinition, type UnaryResponse$1 as UnaryResponse, UpdateAnalysis, UpdateAssistantDetail, UpdateAssistantKnowledge, UpdateAssistantTool, UpdateAssistantVersion, UpdateAssistantVersionRequest, UpdateEndpointDetail, UpdateEndpointVersion, UpdateEndpointVersionResponse, UpdateKnowledgeDetail, UpdateKnowledgeDocumentSegment, UpdateNotificationSetting, UpdateNotificationSettingRequest, UpdateOrganization, UpdateOrganizationResponse, UpdateProject, UpdateProjectResponse, UpdateUser, UpdateUserResponse, UpdateWebhook, VerifyCredentialRequest, VerifyCredentialResponse, VerifyToken, VerifyTokenResponse, VoiceAgent, VoyageAiService, VoyageAiServiceClient, agentEventSelector, toContentText, toStreamAudioContent, toTextContent, useAgentMessages, useConnectAgent, useConversationFeedback, useInputModeToggleAgent, useMessageFeedback, useMultiband3DSpeakerTrackVolume, useMultibandMicrophoneTrackVolume, useSelectInputDeviceAgent };
|