@salesforce/lds-adapters-sales-eci 1.297.0 → 1.299.0
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/es/es2018/sales-eci.js +292 -74
- package/dist/es/es2018/types/src/generated/adapters/initiateMeeting.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postConversationRealtimeInsightMeetingInitiate.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/ConversationRealtimeMeetingInitiationResponseRepresentation.d.ts +51 -0
- package/dist/es/es2018/types/src/generated/types/ConversationRealtimeMeetingPayloadRepresentation.d.ts +27 -0
- package/package.json +4 -4
- package/sfdc/index.js +459 -238
- package/src/raml/api.raml +45 -0
- package/src/raml/luvio.raml +9 -0
package/src/raml/api.raml
CHANGED
|
@@ -59,6 +59,34 @@ types:
|
|
|
59
59
|
modifiedBy:
|
|
60
60
|
description: Generative insight created/modified by
|
|
61
61
|
type: string
|
|
62
|
+
ConversationRealtimeMeetingInitiationResponseRepresentation:
|
|
63
|
+
description: Represents details to connect to the real-time insights service on
|
|
64
|
+
meeting initiation.
|
|
65
|
+
type: object
|
|
66
|
+
properties:
|
|
67
|
+
botId:
|
|
68
|
+
description: Identifier for the Bot that participates in the meeting
|
|
69
|
+
type: string
|
|
70
|
+
error:
|
|
71
|
+
description: Realtime Insight Error
|
|
72
|
+
type: object
|
|
73
|
+
properties:
|
|
74
|
+
//:
|
|
75
|
+
type: string
|
|
76
|
+
jwtToken:
|
|
77
|
+
description: JWT token to connect to the real-time-processing-service for
|
|
78
|
+
obtaining insights
|
|
79
|
+
type: string
|
|
80
|
+
webSocketUrl:
|
|
81
|
+
description: WebSocket URL to connect to the real-time-processing-service
|
|
82
|
+
for obtaining insights
|
|
83
|
+
type: string
|
|
84
|
+
ConversationRealtimeMeetingPayloadRepresentation:
|
|
85
|
+
type: object
|
|
86
|
+
properties:
|
|
87
|
+
meetingUrl:
|
|
88
|
+
type: string
|
|
89
|
+
required: true
|
|
62
90
|
ConversationSummaryListRepresentation:
|
|
63
91
|
description: Represents a list of GenAIConversationSummary records
|
|
64
92
|
type: object
|
|
@@ -129,6 +157,23 @@ types:
|
|
|
129
157
|
id:
|
|
130
158
|
type: string
|
|
131
159
|
required: true
|
|
160
|
+
/realtime/insight/meeting:
|
|
161
|
+
/initiate:
|
|
162
|
+
post:
|
|
163
|
+
displayName: postConversationRealtimeInsightsStartMeeting
|
|
164
|
+
description: Initiate the request to start the meeting and to include ECI
|
|
165
|
+
Real-time bot in the meeting.
|
|
166
|
+
responses:
|
|
167
|
+
'200':
|
|
168
|
+
description: Success
|
|
169
|
+
body:
|
|
170
|
+
application/json:
|
|
171
|
+
type: ConversationRealtimeMeetingInitiationResponseRepresentation
|
|
172
|
+
body:
|
|
173
|
+
application/json:
|
|
174
|
+
type: ConversationRealtimeMeetingPayloadRepresentation
|
|
175
|
+
(oas-body-name): conversationRealtimeMeetingPayload
|
|
176
|
+
|
|
132
177
|
/summary:
|
|
133
178
|
/ai/generate/{conversationId}:
|
|
134
179
|
post:
|
package/src/raml/luvio.raml
CHANGED
|
@@ -25,6 +25,10 @@ types:
|
|
|
25
25
|
id: id
|
|
26
26
|
ConversationTranscriptRepresentation:
|
|
27
27
|
(luvio.ttl): 2592000000
|
|
28
|
+
ConversationRealtimeMeetingInitiationResponseRepresentation:
|
|
29
|
+
(luvio.ttl): 60000 # 60 seconds
|
|
30
|
+
(luvio.key):
|
|
31
|
+
id: botId
|
|
28
32
|
|
|
29
33
|
/conversation:
|
|
30
34
|
/generative/insight/{id}:
|
|
@@ -33,6 +37,11 @@ types:
|
|
|
33
37
|
name: getConversationGenerativeInsight
|
|
34
38
|
(luvio.key):
|
|
35
39
|
id: urlParams.id
|
|
40
|
+
/realtime/insight/meeting:
|
|
41
|
+
/initiate:
|
|
42
|
+
post:
|
|
43
|
+
(luvio.adapter):
|
|
44
|
+
name: initiateMeeting
|
|
36
45
|
/summary:
|
|
37
46
|
/ai/generate/{conversationId}:
|
|
38
47
|
post:
|