@salesforce/lds-adapters-platform-external-connectivity 1.404.0-dev16 → 1.404.0-dev18

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
@@ -211,6 +211,7 @@ types:
211
211
  authenticationTypeInput:
212
212
  description: Sets the Authentication Type Input
213
213
  type: AuthenticationTypeInputRepresentation
214
+ required: false
214
215
  agentActionEnabled:
215
216
  description: Sets the Connection Enabled For Agent Action
216
217
  type: boolean | nil # TODO Hand-rolled W-17603644
@@ -224,6 +225,17 @@ types:
224
225
  name:
225
226
  description: Sets the name
226
227
  type: string
228
+ connectionType:
229
+ description: Sets the connectionType
230
+ type: string
231
+ required: false
232
+ connectionParameters:
233
+ description: Connection parameters as key-value pairs
234
+ type: object
235
+ properties:
236
+ //:
237
+ type: any
238
+ required: false
227
239
  ExternalConnectivityConnectionListRepresentation:
228
240
  description: Output representation for External Connectivity Connection List
229
241
  type: object
@@ -535,6 +547,37 @@ types:
535
547
  type: array
536
548
  items:
537
549
  type: ExternalConnectivityInvocableActionInfoRepresentation
550
+ ExternalConnectivityGetNamedCredentialResultRepresentation:
551
+ description: Output representation for External Connectivity Get Named Credential Config
552
+ type: object
553
+ properties:
554
+ namedCredentialName:
555
+ description: Named Credential Name
556
+ type: string| nil
557
+ label:
558
+ description: Named Credential Label
559
+ type: string | nil
560
+ description:
561
+ description: Named Credential Description
562
+ type: string | nil
563
+ ncType:
564
+ description: Named Credential Type
565
+ type: string | nil
566
+ authenticationProtocol:
567
+ description: Authentication Protocol
568
+ type: string | nil
569
+ principalName:
570
+ description: Principal Name
571
+ type: string | nil
572
+ externalCredentialLabel:
573
+ description: External Credential Label
574
+ type: string | nil
575
+ identityProvider:
576
+ description: Identity Provider Label
577
+ type: string | nil
578
+ errorMessage:
579
+ description: Error Message
580
+ type: string | nil
538
581
 
539
582
  /external-connectivity:
540
583
  /connections:
@@ -580,6 +623,21 @@ types:
580
623
  description: Connection Developer Name
581
624
  type: string
582
625
  required: true
626
+ /named-credentials/{namedCredentialName}:
627
+ get:
628
+ displayName: getExternalConnectivityGetNamedCredentialConfig
629
+ description: GET method to get Named Credential Config
630
+ responses:
631
+ '200':
632
+ description: Success
633
+ body:
634
+ application/json:
635
+ type: ExternalConnectivityGetNamedCredentialResultRepresentation
636
+ uriParameters:
637
+ namedCredentialName:
638
+ description: Named Credential Name
639
+ type: string
640
+ required: true
583
641
  /{connectionDeveloperName}:
584
642
  get:
585
643
  displayName: getExternalConnectivityConnectionDetails
@@ -65,6 +65,9 @@ types:
65
65
  name: name
66
66
  ExternalConnectivityInvocableActionListRepresentation:
67
67
  (luvio.ttl): 500
68
+ ExternalConnectivityGetNamedCredentialResultRepresentation:
69
+ (luvio.ttl): 500
70
+ (luvio.opaque): true
68
71
 
69
72
  /external-connectivity/connections:
70
73
  get:
@@ -124,3 +127,8 @@ types:
124
127
  get:
125
128
  (luvio.adapter):
126
129
  name: getInvocableActions
130
+
131
+ /external-connectivity/connections/named-credentials/{namedCredentialName}:
132
+ get:
133
+ (luvio.adapter):
134
+ name: getNamedCredentialConfig