@salesforce/lds-adapters-service-einsteinllm 1.293.0 → 1.295.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/src/raml/api.raml CHANGED
@@ -2,7 +2,7 @@
2
2
  securedBy:
3
3
  - OAuth2
4
4
  title: Salesforce Connect API
5
- version: '61.0'
5
+ version: '62.0'
6
6
  mediaType: application/json
7
7
  protocols:
8
8
  - https
@@ -316,6 +316,56 @@ types:
316
316
  requestId:
317
317
  description: ID of the generation request
318
318
  type: string
319
+ requestMessages?: # TODO Hand-rolled W-15709657
320
+ description: generated prompt template RequestMessages
321
+ type: array
322
+ items:
323
+ type: EinsteinPromptTemplateMaskContentRepresentation
324
+ responseMessages?: # TODO Hand-rolled W-15709657
325
+ description: generated prompt template ResponseMessages
326
+ type: array
327
+ items:
328
+ type: EinsteinPromptTemplateMaskContentRepresentation
329
+ slotsMaskingInformation?: # TODO Hand-rolled W-15709657
330
+ description: generated prompt template slotsMaskingInformation
331
+ type: array
332
+ items:
333
+ type: EinsteinPromptTemplateMaskDataRepresentation
334
+ EinsteinPromptTemplateMaskContentRepresentation:
335
+ description: Output of a einstein mask data request and response for given prompt template
336
+ type: object
337
+ properties:
338
+ content:
339
+ description: content value
340
+ type: string
341
+ moderationSettings?:
342
+ description: moderationSettings value
343
+ type: EinsteinPromptTemplateMaskSettingsRepresentation | nil # TODO Hand-rolled W-15709657
344
+ role?:
345
+ description: RoleEnum value
346
+ type: string
347
+ EinsteinPromptTemplateMaskDataRepresentation:
348
+ description: Output of a einstein mask data response for given prompt template
349
+ type: object
350
+ properties:
351
+ originalValue:
352
+ description: original field value
353
+ type: string
354
+ placeHolder:
355
+ description: placeholder value
356
+ type: string
357
+ recognizers:
358
+ description: recognizers
359
+ type: array
360
+ items:
361
+ type: string
362
+ EinsteinPromptTemplateMaskSettingsRepresentation:
363
+ description: Output of a einstein mask data moderation setting for given prompt template
364
+ type: object
365
+ properties:
366
+ enableModeration:
367
+ description: enable moderation value
368
+ type: boolean
319
369
  WrappedListString:
320
370
  description: Wrapped list of String for use in Apex.
321
371
  type: object