@salesforce/lds-adapters-marketing-cdp 1.159.0 → 1.160.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/package.json +1 -1
- package/sfdc/index.js +1 -1
- package/src/raml/api.raml +34 -1
- package/src/raml/luvio.raml +8 -0
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
package/src/raml/api.raml
CHANGED
|
@@ -282,7 +282,26 @@ types:
|
|
|
282
282
|
enum:
|
|
283
283
|
- Cio
|
|
284
284
|
- Dmo
|
|
285
|
-
|
|
285
|
+
CdpDataGraphRetryInputRepresentation:
|
|
286
|
+
description: Input representation for retry running error state CDP Data Graph
|
|
287
|
+
type: object
|
|
288
|
+
properties:
|
|
289
|
+
dataGraphName:
|
|
290
|
+
description: data_graph_name
|
|
291
|
+
type: string
|
|
292
|
+
CdpDataGraphRetryOutputRepresentation:
|
|
293
|
+
description: Represents Cdp Data Graph Retry Output
|
|
294
|
+
type: object
|
|
295
|
+
properties:
|
|
296
|
+
dataGraphName:
|
|
297
|
+
description: data_graph_name
|
|
298
|
+
type: string
|
|
299
|
+
lastRunStatus:
|
|
300
|
+
description: last run status
|
|
301
|
+
type: string
|
|
302
|
+
status:
|
|
303
|
+
description: status
|
|
304
|
+
type: string
|
|
286
305
|
/ssot:
|
|
287
306
|
/application-data-graphs:
|
|
288
307
|
post:
|
|
@@ -318,3 +337,17 @@ types:
|
|
|
318
337
|
adgName:
|
|
319
338
|
type: string
|
|
320
339
|
required: true
|
|
340
|
+
/application-data-graphs/retry:
|
|
341
|
+
put:
|
|
342
|
+
displayName: putCdpDataGraphRetry
|
|
343
|
+
description: retry for failed or error state data graph
|
|
344
|
+
responses:
|
|
345
|
+
'200':
|
|
346
|
+
description: Success
|
|
347
|
+
body:
|
|
348
|
+
application/json:
|
|
349
|
+
type: CdpDataGraphRetryOutputRepresentation
|
|
350
|
+
body:
|
|
351
|
+
application/json:
|
|
352
|
+
type: CdpDataGraphRetryInputRepresentation
|
|
353
|
+
(oas-body-name): input
|
package/src/raml/luvio.raml
CHANGED
|
@@ -22,6 +22,10 @@ types:
|
|
|
22
22
|
(luvio.opaque): true
|
|
23
23
|
CdpApplicationDataGraphSourceInputRepresentation:
|
|
24
24
|
(luvio.opaque): true
|
|
25
|
+
CdpDataGraphRetryOutputRepresentation:
|
|
26
|
+
(luvio.opaque): true
|
|
27
|
+
(luvio.key):
|
|
28
|
+
name: dataGraphName
|
|
25
29
|
|
|
26
30
|
/ssot:
|
|
27
31
|
/application-data-graphs:
|
|
@@ -39,3 +43,7 @@ types:
|
|
|
39
43
|
name: deleteAdg
|
|
40
44
|
(luvio.key):
|
|
41
45
|
name: urlParams.adgName
|
|
46
|
+
/application-data-graphs/retry:
|
|
47
|
+
put:
|
|
48
|
+
(luvio.adapter):
|
|
49
|
+
name: retryDataGraph
|