@salesforce/lds-adapters-cdp-byoc 1.354.0-dev15 → 1.354.0-dev17
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-byoc.js +360 -202
- package/dist/es/es2018/types/src/generated/adapters/getCustomCodeExecution.d.ts +28 -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 +3 -1
- package/dist/es/es2018/types/src/generated/resources/getSsotDataCustomCodeExecutionsByCustomCodeExecutionIdAndCustomCodeNameOrId.d.ts +16 -0
- package/package.json +3 -3
- package/sfdc/index.js +546 -380
- package/src/raml/api.raml +17 -0
- package/src/raml/luvio.raml +6 -2
package/src/raml/api.raml
CHANGED
|
@@ -457,6 +457,23 @@ types:
|
|
|
457
457
|
customCodeNameOrId:
|
|
458
458
|
type: string
|
|
459
459
|
required: true
|
|
460
|
+
/data-custom-code/{customCodeNameOrId}/executions/{customCodeExecutionId}:
|
|
461
|
+
get:
|
|
462
|
+
displayName: getCdpCustomCodeExecutionSingle
|
|
463
|
+
description: BYOC Custom Code Execution
|
|
464
|
+
responses:
|
|
465
|
+
'200':
|
|
466
|
+
description: Success
|
|
467
|
+
body:
|
|
468
|
+
application/json:
|
|
469
|
+
type: CustomCodeExecutionBaseRepresentation
|
|
470
|
+
uriParameters:
|
|
471
|
+
customCodeExecutionId:
|
|
472
|
+
type: string
|
|
473
|
+
required: true
|
|
474
|
+
customCodeNameOrId:
|
|
475
|
+
type: string
|
|
476
|
+
required: true
|
|
460
477
|
/data-custom-code/{customCodeNameOrId}/executions/{customCodeExecutionId}/logs:
|
|
461
478
|
get:
|
|
462
479
|
displayName: getCdpCustomCodeExecutionLog
|
package/src/raml/luvio.raml
CHANGED
|
@@ -46,7 +46,11 @@ types:
|
|
|
46
46
|
name: getCustomCodeExecutions
|
|
47
47
|
(lvuio.key):
|
|
48
48
|
id: urlParams.customCodeNameOrId
|
|
49
|
-
/{customCodeExecutionId}
|
|
49
|
+
/{customCodeExecutionId}:
|
|
50
50
|
get:
|
|
51
51
|
(luvio.adapter):
|
|
52
|
-
name:
|
|
52
|
+
name: getCustomCodeExecution
|
|
53
|
+
/logs:
|
|
54
|
+
get:
|
|
55
|
+
(luvio.adapter):
|
|
56
|
+
name: getCustomCodeExecutionLogs
|