@salesforce/lds-adapters-cdp-document-processing 1.354.0-dev5 → 1.354.0-dev7
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/cdp-document-processing.js +190 -97
- package/dist/es/es2018/types/src/generated/adapters/updateIdpConfiguration.d.ts +18 -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/patchSsotDocumentProcessingConfigurationsByIdOrApiName.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/types/IdpConfigurationPatchInputRepresentation.d.ts +35 -0
- package/package.json +3 -3
- package/sfdc/index.js +267 -171
- package/src/raml/api.raml +29 -0
- package/src/raml/luvio.raml +8 -0
package/src/raml/api.raml
CHANGED
|
@@ -200,6 +200,22 @@ types:
|
|
|
200
200
|
schemaConfig:
|
|
201
201
|
description: The schema of the data to be extracted
|
|
202
202
|
type: string
|
|
203
|
+
IdpConfigurationPatchInputRepresentation:
|
|
204
|
+
description: The update input representation for Idp Configuration
|
|
205
|
+
type: object
|
|
206
|
+
properties:
|
|
207
|
+
activationStatus:
|
|
208
|
+
description: The updated activation status - Activated/Deactivated
|
|
209
|
+
type: string
|
|
210
|
+
enum:
|
|
211
|
+
- Activated
|
|
212
|
+
- Deactivated
|
|
213
|
+
description:
|
|
214
|
+
description: The updated description of the IDP configuration to be created
|
|
215
|
+
type: string
|
|
216
|
+
label:
|
|
217
|
+
description: The updated label of the IDP configuration to be created
|
|
218
|
+
type: string
|
|
203
219
|
IdpConfigurationRepresentation:
|
|
204
220
|
description: Idp Configuration Representation
|
|
205
221
|
type: IdpConfigurationBaseRepresentation
|
|
@@ -403,6 +419,19 @@ types:
|
|
|
403
419
|
body:
|
|
404
420
|
application/json:
|
|
405
421
|
type: IdpConfigurationDetailsRepresentation
|
|
422
|
+
patch:
|
|
423
|
+
displayName: updateIdpConfiguration
|
|
424
|
+
description: updates the details of a specific idp configuration record
|
|
425
|
+
responses:
|
|
426
|
+
'200':
|
|
427
|
+
description: Success
|
|
428
|
+
body:
|
|
429
|
+
application/json:
|
|
430
|
+
type: IdpConfigurationDetailsRepresentation
|
|
431
|
+
body:
|
|
432
|
+
application/json:
|
|
433
|
+
type: IdpConfigurationPatchInputRepresentation
|
|
434
|
+
(oas-body-name): patchIdpConfigurationRecord
|
|
406
435
|
uriParameters:
|
|
407
436
|
idOrApiName:
|
|
408
437
|
description: Document processing Config ID
|
package/src/raml/luvio.raml
CHANGED
|
@@ -46,6 +46,10 @@ types:
|
|
|
46
46
|
(luvio.key):
|
|
47
47
|
id: id
|
|
48
48
|
|
|
49
|
+
IdpConfigurationPatchInputRepresentation:
|
|
50
|
+
(luvio.ttl): 500
|
|
51
|
+
(luvio.opaque): true
|
|
52
|
+
|
|
49
53
|
IdpGenerateSchemaFileInputRepresentation:
|
|
50
54
|
(luvio.opaque): true
|
|
51
55
|
|
|
@@ -91,6 +95,10 @@ types:
|
|
|
91
95
|
(luvio.key):
|
|
92
96
|
id: urlParams.idOrApiName
|
|
93
97
|
|
|
98
|
+
patch:
|
|
99
|
+
(luvio.adapter):
|
|
100
|
+
name: updateIdpConfiguration
|
|
101
|
+
|
|
94
102
|
/global-config:
|
|
95
103
|
get:
|
|
96
104
|
(luvio.adapter):
|