pcm-agents-react 0.1.3 → 0.1.5
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.
|
@@ -5,9 +5,15 @@ import { PcmAppChatModal as PcmAppChatModalElement, defineCustomElement as defin
|
|
|
5
5
|
import { PcmChatMessage as PcmChatMessageElement, defineCustomElement as definePcmChatMessage } from "pcm-agents/dist/components/pcm-chat-message.js";
|
|
6
6
|
import { PcmChatModal as PcmChatModalElement, defineCustomElement as definePcmChatModal } from "pcm-agents/dist/components/pcm-chat-modal.js";
|
|
7
7
|
import { PcmHrChatModal as PcmHrChatModalElement, defineCustomElement as definePcmHrChatModal } from "pcm-agents/dist/components/pcm-hr-chat-modal.js";
|
|
8
|
+
import { PcmHtwsModal as PcmHtwsModalElement, defineCustomElement as definePcmHtwsModal } from "pcm-agents/dist/components/pcm-htws-modal.js";
|
|
9
|
+
import { PcmHyzjModal as PcmHyzjModalElement, defineCustomElement as definePcmHyzjModal } from "pcm-agents/dist/components/pcm-hyzj-modal.js";
|
|
10
|
+
import { PcmJdModal as PcmJdModalElement, defineCustomElement as definePcmJdModal } from "pcm-agents/dist/components/pcm-jd-modal.js";
|
|
8
11
|
import { PcmJlppModal as PcmJlppModalElement, defineCustomElement as definePcmJlppModal } from "pcm-agents/dist/components/pcm-jlpp-modal.js";
|
|
12
|
+
import { PcmMnctModal as PcmMnctModalElement, defineCustomElement as definePcmMnctModal } from "pcm-agents/dist/components/pcm-mnct-modal.js";
|
|
9
13
|
import { PcmMnmsModal as PcmMnmsModalElement, defineCustomElement as definePcmMnmsModal } from "pcm-agents/dist/components/pcm-mnms-modal.js";
|
|
14
|
+
import { PcmMsbgModal as PcmMsbgModalElement, defineCustomElement as definePcmMsbgModal } from "pcm-agents/dist/components/pcm-msbg-modal.js";
|
|
10
15
|
import { PcmVideoChatModal as PcmVideoChatModalElement, defineCustomElement as definePcmVideoChatModal } from "pcm-agents/dist/components/pcm-video-chat-modal.js";
|
|
16
|
+
import { PcmZskChatModal as PcmZskChatModalElement, defineCustomElement as definePcmZskChatModal } from "pcm-agents/dist/components/pcm-zsk-chat-modal.js";
|
|
11
17
|
import { PcmZyghModal as PcmZyghModalElement, defineCustomElement as definePcmZyghModal } from "pcm-agents/dist/components/pcm-zygh-modal.js";
|
|
12
18
|
import React from 'react';
|
|
13
19
|
export const MyComponent = createComponent({
|
|
@@ -56,12 +62,54 @@ export const PcmHrChatModal = createComponent({
|
|
|
56
62
|
events: {
|
|
57
63
|
onModalClosed: 'modalClosed',
|
|
58
64
|
onStreamComplete: 'streamComplete',
|
|
65
|
+
onConversationStart: 'conversationStart',
|
|
59
66
|
onInterviewComplete: 'interviewComplete',
|
|
60
67
|
onRecordingError: 'recordingError',
|
|
61
68
|
onRecordingStatusChange: 'recordingStatusChange'
|
|
62
69
|
},
|
|
63
70
|
defineCustomElement: definePcmHrChatModal
|
|
64
71
|
});
|
|
72
|
+
export const PcmHtwsModal = createComponent({
|
|
73
|
+
tagName: 'pcm-htws-modal',
|
|
74
|
+
elementClass: PcmHtwsModalElement,
|
|
75
|
+
react: React,
|
|
76
|
+
events: {
|
|
77
|
+
onModalClosed: 'modalClosed',
|
|
78
|
+
onUploadSuccess: 'uploadSuccess',
|
|
79
|
+
onStreamComplete: 'streamComplete',
|
|
80
|
+
onConversationStart: 'conversationStart',
|
|
81
|
+
onInterviewComplete: 'interviewComplete',
|
|
82
|
+
onTokenInvalid: 'tokenInvalid'
|
|
83
|
+
},
|
|
84
|
+
defineCustomElement: definePcmHtwsModal
|
|
85
|
+
});
|
|
86
|
+
export const PcmHyzjModal = createComponent({
|
|
87
|
+
tagName: 'pcm-hyzj-modal',
|
|
88
|
+
elementClass: PcmHyzjModalElement,
|
|
89
|
+
react: React,
|
|
90
|
+
events: {
|
|
91
|
+
onModalClosed: 'modalClosed',
|
|
92
|
+
onUploadSuccess: 'uploadSuccess',
|
|
93
|
+
onStreamComplete: 'streamComplete',
|
|
94
|
+
onConversationStart: 'conversationStart',
|
|
95
|
+
onInterviewComplete: 'interviewComplete',
|
|
96
|
+
onTokenInvalid: 'tokenInvalid'
|
|
97
|
+
},
|
|
98
|
+
defineCustomElement: definePcmHyzjModal
|
|
99
|
+
});
|
|
100
|
+
export const PcmJdModal = createComponent({
|
|
101
|
+
tagName: 'pcm-jd-modal',
|
|
102
|
+
elementClass: PcmJdModalElement,
|
|
103
|
+
react: React,
|
|
104
|
+
events: {
|
|
105
|
+
onModalClosed: 'modalClosed',
|
|
106
|
+
onStreamComplete: 'streamComplete',
|
|
107
|
+
onConversationStart: 'conversationStart',
|
|
108
|
+
onInterviewComplete: 'interviewComplete',
|
|
109
|
+
onTokenInvalid: 'tokenInvalid'
|
|
110
|
+
},
|
|
111
|
+
defineCustomElement: definePcmJdModal
|
|
112
|
+
});
|
|
65
113
|
export const PcmJlppModal = createComponent({
|
|
66
114
|
tagName: 'pcm-jlpp-modal',
|
|
67
115
|
elementClass: PcmJlppModalElement,
|
|
@@ -76,6 +124,20 @@ export const PcmJlppModal = createComponent({
|
|
|
76
124
|
},
|
|
77
125
|
defineCustomElement: definePcmJlppModal
|
|
78
126
|
});
|
|
127
|
+
export const PcmMnctModal = createComponent({
|
|
128
|
+
tagName: 'pcm-mnct-modal',
|
|
129
|
+
elementClass: PcmMnctModalElement,
|
|
130
|
+
react: React,
|
|
131
|
+
events: {
|
|
132
|
+
onModalClosed: 'modalClosed',
|
|
133
|
+
onUploadSuccess: 'uploadSuccess',
|
|
134
|
+
onStreamComplete: 'streamComplete',
|
|
135
|
+
onConversationStart: 'conversationStart',
|
|
136
|
+
onInterviewComplete: 'interviewComplete',
|
|
137
|
+
onTokenInvalid: 'tokenInvalid'
|
|
138
|
+
},
|
|
139
|
+
defineCustomElement: definePcmMnctModal
|
|
140
|
+
});
|
|
79
141
|
export const PcmMnmsModal = createComponent({
|
|
80
142
|
tagName: 'pcm-mnms-modal',
|
|
81
143
|
elementClass: PcmMnmsModalElement,
|
|
@@ -90,6 +152,20 @@ export const PcmMnmsModal = createComponent({
|
|
|
90
152
|
},
|
|
91
153
|
defineCustomElement: definePcmMnmsModal
|
|
92
154
|
});
|
|
155
|
+
export const PcmMsbgModal = createComponent({
|
|
156
|
+
tagName: 'pcm-msbg-modal',
|
|
157
|
+
elementClass: PcmMsbgModalElement,
|
|
158
|
+
react: React,
|
|
159
|
+
events: {
|
|
160
|
+
onModalClosed: 'modalClosed',
|
|
161
|
+
onUploadSuccess: 'uploadSuccess',
|
|
162
|
+
onStreamComplete: 'streamComplete',
|
|
163
|
+
onConversationStart: 'conversationStart',
|
|
164
|
+
onInterviewComplete: 'interviewComplete',
|
|
165
|
+
onTokenInvalid: 'tokenInvalid'
|
|
166
|
+
},
|
|
167
|
+
defineCustomElement: definePcmMsbgModal
|
|
168
|
+
});
|
|
93
169
|
export const PcmVideoChatModal = createComponent({
|
|
94
170
|
tagName: 'pcm-video-chat-modal',
|
|
95
171
|
elementClass: PcmVideoChatModalElement,
|
|
@@ -103,6 +179,18 @@ export const PcmVideoChatModal = createComponent({
|
|
|
103
179
|
},
|
|
104
180
|
defineCustomElement: definePcmVideoChatModal
|
|
105
181
|
});
|
|
182
|
+
export const PcmZskChatModal = createComponent({
|
|
183
|
+
tagName: 'pcm-zsk-chat-modal',
|
|
184
|
+
elementClass: PcmZskChatModalElement,
|
|
185
|
+
react: React,
|
|
186
|
+
events: {
|
|
187
|
+
onModalClosed: 'modalClosed',
|
|
188
|
+
onStreamComplete: 'streamComplete',
|
|
189
|
+
onConversationStart: 'conversationStart',
|
|
190
|
+
onTokenInvalid: 'tokenInvalid'
|
|
191
|
+
},
|
|
192
|
+
defineCustomElement: definePcmZskChatModal
|
|
193
|
+
});
|
|
106
194
|
export const PcmZyghModal = createComponent({
|
|
107
195
|
tagName: 'pcm-zygh-modal',
|
|
108
196
|
elementClass: PcmZyghModalElement,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../../src/components/stencil-generated/components.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAUb,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AAEvE,OAAO,EAAE,WAAW,IAAI,kBAAkB,EAAE,mBAAmB,IAAI,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AACzI,OAAO,EAAE,eAAe,IAAI,sBAAsB,EAAE,mBAAmB,IAAI,qBAAqB,EAAE,MAAM,kDAAkD,CAAC;AAC3J,OAAO,EAAE,cAAc,IAAI,qBAAqB,EAAE,mBAAmB,IAAI,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AACtJ,OAAO,EAAE,YAAY,IAAI,mBAAmB,EAAE,mBAAmB,IAAI,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAC9I,OAAO,EAAE,cAAc,IAAI,qBAAqB,EAAE,mBAAmB,IAAI,oBAAoB,EAAE,MAAM,iDAAiD,CAAC;AACvJ,OAAO,EAAE,YAAY,IAAI,mBAAmB,EAAE,mBAAmB,IAAI,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAC9I,OAAO,EAAE,YAAY,IAAI,mBAAmB,EAAE,mBAAmB,IAAI,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAC9I,OAAO,EAAE,iBAAiB,IAAI,wBAAwB,EAAE,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AACnK,OAAO,EAAE,YAAY,IAAI,mBAAmB,EAAE,mBAAmB,IAAI,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAC9I,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,CAAC,MAAM,WAAW,GAA+E,eAAe,CAAwC;IAC1J,OAAO,EAAE,cAAc;IACvB,YAAY,EAAE,kBAAkB;IAEhC,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,EAAuB;IAC/B,mBAAmB,EAAE,iBAAiB;CACzC,CAAC,CAAC;AA+BH,MAAM,CAAC,MAAM,eAAe,GAAuF,eAAe,CAAgD;IAC9K,OAAO,EAAE,oBAAoB;IAC7B,YAAY,EAAE,sBAAsB;IAEpC,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE;QACJ,aAAa,EAAE,aAAa;QAC5B,gBAAgB,EAAE,gBAAgB;QAClC,mBAAmB,EAAE,mBAAmB;QACxC,mBAAmB,EAAE,mBAAmB;QACxC,gBAAgB,EAAE,gBAAgB;QAClC,uBAAuB,EAAE,uBAAuB;KAC1B;IAC1B,mBAAmB,EAAE,qBAAqB;CAC7C,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,cAAc,GAAqF,eAAe,CAA8C;IACzK,OAAO,EAAE,kBAAkB;IAC3B,YAAY,EAAE,qBAAqB;IAEnC,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,EAAE,eAAe,EAAE,eAAe,EAA0B;IACpE,mBAAmB,EAAE,oBAAoB;CAC5C,CAAC,CAAC;AAaH,MAAM,CAAC,MAAM,YAAY,GAAiF,eAAe,CAA0C;IAC/J,OAAO,EAAE,gBAAgB;IACzB,YAAY,EAAE,mBAAmB;IAEjC,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE;QACJ,aAAa,EAAE,aAAa;QAC5B,aAAa,EAAE,aAAa;QAC5B,gBAAgB,EAAE,gBAAgB;KACf;IACvB,mBAAmB,EAAE,kBAAkB;CAC1C,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../../src/components/stencil-generated/components.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
|
|
2
|
-
import { type CareerPlanType, type ChatMessage, type FileUploadResponse, type PcmChatMessageCustomEvent, type PcmJlppModalCustomEvent, type PcmMnmsModalCustomEvent, type PcmZyghModalCustomEvent } from "pcm-agents";
|
|
2
|
+
import { type CareerPlanType, type ChatMessage, type FileUploadResponse, type PcmChatMessageCustomEvent, type PcmHtwsModalCustomEvent, type PcmHyzjModalCustomEvent, type PcmJlppModalCustomEvent, type PcmMnctModalCustomEvent, type PcmMnmsModalCustomEvent, type PcmMsbgModalCustomEvent, type PcmZyghModalCustomEvent } from "pcm-agents";
|
|
3
3
|
import { MyComponent as MyComponentElement } from "pcm-agents/dist/components/my-component.js";
|
|
4
4
|
import { PcmAppChatModal as PcmAppChatModalElement } from "pcm-agents/dist/components/pcm-app-chat-modal.js";
|
|
5
5
|
import { PcmChatMessage as PcmChatMessageElement } from "pcm-agents/dist/components/pcm-chat-message.js";
|
|
6
6
|
import { PcmChatModal as PcmChatModalElement } from "pcm-agents/dist/components/pcm-chat-modal.js";
|
|
7
7
|
import { PcmHrChatModal as PcmHrChatModalElement } from "pcm-agents/dist/components/pcm-hr-chat-modal.js";
|
|
8
|
+
import { PcmHtwsModal as PcmHtwsModalElement } from "pcm-agents/dist/components/pcm-htws-modal.js";
|
|
9
|
+
import { PcmHyzjModal as PcmHyzjModalElement } from "pcm-agents/dist/components/pcm-hyzj-modal.js";
|
|
10
|
+
import { PcmJdModal as PcmJdModalElement } from "pcm-agents/dist/components/pcm-jd-modal.js";
|
|
8
11
|
import { PcmJlppModal as PcmJlppModalElement } from "pcm-agents/dist/components/pcm-jlpp-modal.js";
|
|
12
|
+
import { PcmMnctModal as PcmMnctModalElement } from "pcm-agents/dist/components/pcm-mnct-modal.js";
|
|
9
13
|
import { PcmMnmsModal as PcmMnmsModalElement } from "pcm-agents/dist/components/pcm-mnms-modal.js";
|
|
14
|
+
import { PcmMsbgModal as PcmMsbgModalElement } from "pcm-agents/dist/components/pcm-msbg-modal.js";
|
|
10
15
|
import { PcmVideoChatModal as PcmVideoChatModalElement } from "pcm-agents/dist/components/pcm-video-chat-modal.js";
|
|
16
|
+
import { PcmZskChatModal as PcmZskChatModalElement } from "pcm-agents/dist/components/pcm-zsk-chat-modal.js";
|
|
11
17
|
import { PcmZyghModal as PcmZyghModalElement } from "pcm-agents/dist/components/pcm-zygh-modal.js";
|
|
12
18
|
type MyComponentEvents = NonNullable<unknown>;
|
|
13
19
|
export declare const MyComponent: StencilReactComponent<MyComponentElement, MyComponentEvents>;
|
|
@@ -63,6 +69,12 @@ type PcmHrChatModalEvents = {
|
|
|
63
69
|
message_id: string;
|
|
64
70
|
id: string;
|
|
65
71
|
}>>;
|
|
72
|
+
onConversationStart: EventName<CustomEvent<{
|
|
73
|
+
conversation_id: string;
|
|
74
|
+
event: string;
|
|
75
|
+
message_id: string;
|
|
76
|
+
id: string;
|
|
77
|
+
}>>;
|
|
66
78
|
onInterviewComplete: EventName<CustomEvent<{
|
|
67
79
|
conversation_id: string;
|
|
68
80
|
total_questions: number;
|
|
@@ -78,6 +90,71 @@ type PcmHrChatModalEvents = {
|
|
|
78
90
|
}>>;
|
|
79
91
|
};
|
|
80
92
|
export declare const PcmHrChatModal: StencilReactComponent<PcmHrChatModalElement, PcmHrChatModalEvents>;
|
|
93
|
+
type PcmHtwsModalEvents = {
|
|
94
|
+
onModalClosed: EventName<CustomEvent<void>>;
|
|
95
|
+
onUploadSuccess: EventName<PcmHtwsModalCustomEvent<FileUploadResponse>>;
|
|
96
|
+
onStreamComplete: EventName<CustomEvent<{
|
|
97
|
+
conversation_id: string;
|
|
98
|
+
event: string;
|
|
99
|
+
message_id: string;
|
|
100
|
+
id: string;
|
|
101
|
+
}>>;
|
|
102
|
+
onConversationStart: EventName<CustomEvent<{
|
|
103
|
+
conversation_id: string;
|
|
104
|
+
event: string;
|
|
105
|
+
message_id: string;
|
|
106
|
+
id: string;
|
|
107
|
+
}>>;
|
|
108
|
+
onInterviewComplete: EventName<CustomEvent<{
|
|
109
|
+
conversation_id: string;
|
|
110
|
+
total_questions: number;
|
|
111
|
+
}>>;
|
|
112
|
+
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
113
|
+
};
|
|
114
|
+
export declare const PcmHtwsModal: StencilReactComponent<PcmHtwsModalElement, PcmHtwsModalEvents>;
|
|
115
|
+
type PcmHyzjModalEvents = {
|
|
116
|
+
onModalClosed: EventName<CustomEvent<void>>;
|
|
117
|
+
onUploadSuccess: EventName<PcmHyzjModalCustomEvent<FileUploadResponse>>;
|
|
118
|
+
onStreamComplete: EventName<CustomEvent<{
|
|
119
|
+
conversation_id: string;
|
|
120
|
+
event: string;
|
|
121
|
+
message_id: string;
|
|
122
|
+
id: string;
|
|
123
|
+
}>>;
|
|
124
|
+
onConversationStart: EventName<CustomEvent<{
|
|
125
|
+
conversation_id: string;
|
|
126
|
+
event: string;
|
|
127
|
+
message_id: string;
|
|
128
|
+
id: string;
|
|
129
|
+
}>>;
|
|
130
|
+
onInterviewComplete: EventName<CustomEvent<{
|
|
131
|
+
conversation_id: string;
|
|
132
|
+
total_questions: number;
|
|
133
|
+
}>>;
|
|
134
|
+
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
135
|
+
};
|
|
136
|
+
export declare const PcmHyzjModal: StencilReactComponent<PcmHyzjModalElement, PcmHyzjModalEvents>;
|
|
137
|
+
type PcmJdModalEvents = {
|
|
138
|
+
onModalClosed: EventName<CustomEvent<void>>;
|
|
139
|
+
onStreamComplete: EventName<CustomEvent<{
|
|
140
|
+
conversation_id: string;
|
|
141
|
+
event: string;
|
|
142
|
+
message_id: string;
|
|
143
|
+
id: string;
|
|
144
|
+
}>>;
|
|
145
|
+
onConversationStart: EventName<CustomEvent<{
|
|
146
|
+
conversation_id: string;
|
|
147
|
+
event: string;
|
|
148
|
+
message_id: string;
|
|
149
|
+
id: string;
|
|
150
|
+
}>>;
|
|
151
|
+
onInterviewComplete: EventName<CustomEvent<{
|
|
152
|
+
conversation_id: string;
|
|
153
|
+
total_questions: number;
|
|
154
|
+
}>>;
|
|
155
|
+
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
156
|
+
};
|
|
157
|
+
export declare const PcmJdModal: StencilReactComponent<PcmJdModalElement, PcmJdModalEvents>;
|
|
81
158
|
type PcmJlppModalEvents = {
|
|
82
159
|
onModalClosed: EventName<CustomEvent<void>>;
|
|
83
160
|
onUploadSuccess: EventName<PcmJlppModalCustomEvent<FileUploadResponse>>;
|
|
@@ -100,6 +177,28 @@ type PcmJlppModalEvents = {
|
|
|
100
177
|
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
101
178
|
};
|
|
102
179
|
export declare const PcmJlppModal: StencilReactComponent<PcmJlppModalElement, PcmJlppModalEvents>;
|
|
180
|
+
type PcmMnctModalEvents = {
|
|
181
|
+
onModalClosed: EventName<CustomEvent<void>>;
|
|
182
|
+
onUploadSuccess: EventName<PcmMnctModalCustomEvent<FileUploadResponse>>;
|
|
183
|
+
onStreamComplete: EventName<CustomEvent<{
|
|
184
|
+
conversation_id: string;
|
|
185
|
+
event: string;
|
|
186
|
+
message_id: string;
|
|
187
|
+
id: string;
|
|
188
|
+
}>>;
|
|
189
|
+
onConversationStart: EventName<CustomEvent<{
|
|
190
|
+
conversation_id: string;
|
|
191
|
+
event: string;
|
|
192
|
+
message_id: string;
|
|
193
|
+
id: string;
|
|
194
|
+
}>>;
|
|
195
|
+
onInterviewComplete: EventName<CustomEvent<{
|
|
196
|
+
conversation_id: string;
|
|
197
|
+
total_questions: number;
|
|
198
|
+
}>>;
|
|
199
|
+
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
200
|
+
};
|
|
201
|
+
export declare const PcmMnctModal: StencilReactComponent<PcmMnctModalElement, PcmMnctModalEvents>;
|
|
103
202
|
type PcmMnmsModalEvents = {
|
|
104
203
|
onModalClosed: EventName<CustomEvent<void>>;
|
|
105
204
|
onUploadSuccess: EventName<PcmMnmsModalCustomEvent<FileUploadResponse>>;
|
|
@@ -122,6 +221,28 @@ type PcmMnmsModalEvents = {
|
|
|
122
221
|
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
123
222
|
};
|
|
124
223
|
export declare const PcmMnmsModal: StencilReactComponent<PcmMnmsModalElement, PcmMnmsModalEvents>;
|
|
224
|
+
type PcmMsbgModalEvents = {
|
|
225
|
+
onModalClosed: EventName<CustomEvent<void>>;
|
|
226
|
+
onUploadSuccess: EventName<PcmMsbgModalCustomEvent<FileUploadResponse>>;
|
|
227
|
+
onStreamComplete: EventName<CustomEvent<{
|
|
228
|
+
conversation_id: string;
|
|
229
|
+
event: string;
|
|
230
|
+
message_id: string;
|
|
231
|
+
id: string;
|
|
232
|
+
}>>;
|
|
233
|
+
onConversationStart: EventName<CustomEvent<{
|
|
234
|
+
conversation_id: string;
|
|
235
|
+
event: string;
|
|
236
|
+
message_id: string;
|
|
237
|
+
id: string;
|
|
238
|
+
}>>;
|
|
239
|
+
onInterviewComplete: EventName<CustomEvent<{
|
|
240
|
+
conversation_id: string;
|
|
241
|
+
total_questions: number;
|
|
242
|
+
}>>;
|
|
243
|
+
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
244
|
+
};
|
|
245
|
+
export declare const PcmMsbgModal: StencilReactComponent<PcmMsbgModalElement, PcmMsbgModalEvents>;
|
|
125
246
|
type PcmVideoChatModalEvents = {
|
|
126
247
|
onModalClosed: EventName<CustomEvent<void>>;
|
|
127
248
|
onStreamComplete: EventName<CustomEvent<{
|
|
@@ -145,6 +266,23 @@ type PcmVideoChatModalEvents = {
|
|
|
145
266
|
}>>;
|
|
146
267
|
};
|
|
147
268
|
export declare const PcmVideoChatModal: StencilReactComponent<PcmVideoChatModalElement, PcmVideoChatModalEvents>;
|
|
269
|
+
type PcmZskChatModalEvents = {
|
|
270
|
+
onModalClosed: EventName<CustomEvent<void>>;
|
|
271
|
+
onStreamComplete: EventName<CustomEvent<{
|
|
272
|
+
conversation_id: string;
|
|
273
|
+
event: string;
|
|
274
|
+
message_id: string;
|
|
275
|
+
id: string;
|
|
276
|
+
}>>;
|
|
277
|
+
onConversationStart: EventName<CustomEvent<{
|
|
278
|
+
conversation_id: string;
|
|
279
|
+
event: string;
|
|
280
|
+
message_id: string;
|
|
281
|
+
id: string;
|
|
282
|
+
}>>;
|
|
283
|
+
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
284
|
+
};
|
|
285
|
+
export declare const PcmZskChatModal: StencilReactComponent<PcmZskChatModalElement, PcmZskChatModalEvents>;
|
|
148
286
|
type PcmZyghModalEvents = {
|
|
149
287
|
onModalClosed: EventName<CustomEvent<void>>;
|
|
150
288
|
onUploadSuccess: EventName<PcmZyghModalCustomEvent<FileUploadResponse>>;
|
|
@@ -162,7 +300,7 @@ type PcmZyghModalEvents = {
|
|
|
162
300
|
}>>;
|
|
163
301
|
onPlanningComplete: EventName<PcmZyghModalCustomEvent<{
|
|
164
302
|
conversation_id: string;
|
|
165
|
-
|
|
303
|
+
type: CareerPlanType;
|
|
166
304
|
}>>;
|
|
167
305
|
onTokenInvalid: EventName<CustomEvent<void>>;
|
|
168
306
|
};
|