@salesforce/lds-adapters-cdp-data-transform 1.354.0-dev20 → 1.354.0-dev21
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-data-transform.js +501 -219
- package/dist/es/es2018/types/src/generated/adapters/updateDataTransform.d.ts +33 -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/putSsotDataTransformsByDataTransformNameOrId.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/DataObjectFieldRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/DataObjectRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/DataTransformRepresentation.d.ts +19 -19
- package/package.json +3 -3
- package/sfdc/index.js +484 -199
- package/src/raml/api.raml +34 -14
- package/src/raml/luvio.raml +3 -0
package/src/raml/api.raml
CHANGED
|
@@ -120,7 +120,7 @@ types:
|
|
|
120
120
|
isPrimaryKey:
|
|
121
121
|
description: Is Primary Key
|
|
122
122
|
type: boolean
|
|
123
|
-
keyQualifierField
|
|
123
|
+
keyQualifierField?:
|
|
124
124
|
description: Key Qualifier Field
|
|
125
125
|
type: string
|
|
126
126
|
label:
|
|
@@ -149,7 +149,7 @@ types:
|
|
|
149
149
|
discriminator: type
|
|
150
150
|
type: CdpAssetBaseRepresentation
|
|
151
151
|
properties:
|
|
152
|
-
category
|
|
152
|
+
category?:
|
|
153
153
|
description: Category
|
|
154
154
|
type: string
|
|
155
155
|
enum:
|
|
@@ -159,7 +159,7 @@ types:
|
|
|
159
159
|
eventDateTimeFieldName?:
|
|
160
160
|
description: Event Date Time Field
|
|
161
161
|
type: string
|
|
162
|
-
fields
|
|
162
|
+
fields?:
|
|
163
163
|
description: Fields
|
|
164
164
|
type: array
|
|
165
165
|
items:
|
|
@@ -167,7 +167,7 @@ types:
|
|
|
167
167
|
recordModifiedFieldName?:
|
|
168
168
|
description: Record Modified Field
|
|
169
169
|
type: string
|
|
170
|
-
type
|
|
170
|
+
type?:
|
|
171
171
|
description: Type of Data Object
|
|
172
172
|
type: string
|
|
173
173
|
enum:
|
|
@@ -258,26 +258,26 @@ types:
|
|
|
258
258
|
enum:
|
|
259
259
|
- Custom
|
|
260
260
|
- System
|
|
261
|
-
dataSpaceName
|
|
261
|
+
dataSpaceName?:
|
|
262
262
|
description: Data space for the Data Transform
|
|
263
263
|
type: string
|
|
264
264
|
definition:
|
|
265
265
|
description: Data Transform definition
|
|
266
266
|
type: DataTransformDefinitionRepresentation
|
|
267
|
-
description
|
|
267
|
+
description?:
|
|
268
268
|
description: Description
|
|
269
269
|
type: string
|
|
270
|
-
lastRunDate
|
|
270
|
+
lastRunDate?:
|
|
271
271
|
description: Last run date
|
|
272
272
|
type: string
|
|
273
|
-
lastRunErrorCode
|
|
273
|
+
lastRunErrorCode?:
|
|
274
274
|
description: Last run error code
|
|
275
275
|
type: CdpErrorRepresentation
|
|
276
|
-
lastRunErrorMessage
|
|
276
|
+
lastRunErrorMessage?:
|
|
277
277
|
description: The error message for the last run of the transform. Set if last
|
|
278
278
|
run ended in failure/partial_failure
|
|
279
279
|
type: string
|
|
280
|
-
lastRunStatus
|
|
280
|
+
lastRunStatus?:
|
|
281
281
|
description: The last run status
|
|
282
282
|
type: string
|
|
283
283
|
enum:
|
|
@@ -294,7 +294,7 @@ types:
|
|
|
294
294
|
- Rebuilding
|
|
295
295
|
- SkippedNoChanges
|
|
296
296
|
- Success
|
|
297
|
-
schedule
|
|
297
|
+
schedule?:
|
|
298
298
|
description: The schedule cron expression current dataflow.
|
|
299
299
|
type: ScheduleRepresentation
|
|
300
300
|
status:
|
|
@@ -305,7 +305,7 @@ types:
|
|
|
305
305
|
- Deleting
|
|
306
306
|
- Error
|
|
307
307
|
- Processing
|
|
308
|
-
tags
|
|
308
|
+
tags?:
|
|
309
309
|
description: Tags of a data transforms - consumer specific metadata/event
|
|
310
310
|
info
|
|
311
311
|
type: object
|
|
@@ -318,7 +318,7 @@ types:
|
|
|
318
318
|
enum:
|
|
319
319
|
- Batch
|
|
320
320
|
- Streaming
|
|
321
|
-
version
|
|
321
|
+
version?:
|
|
322
322
|
description: Version
|
|
323
323
|
format: double
|
|
324
324
|
type: number
|
|
@@ -408,7 +408,7 @@ types:
|
|
|
408
408
|
body:
|
|
409
409
|
application/json:
|
|
410
410
|
type: DataTransformInputRepresentation
|
|
411
|
-
(oas-body-name):
|
|
411
|
+
(oas-body-name): dataTransformObject
|
|
412
412
|
/data-transforms/{dataTransformNameOrId}:
|
|
413
413
|
get:
|
|
414
414
|
displayName: getCdpDataTransform
|
|
@@ -429,3 +429,23 @@ types:
|
|
|
429
429
|
responses:
|
|
430
430
|
'200':
|
|
431
431
|
description: Success
|
|
432
|
+
put:
|
|
433
|
+
displayName: putCdpDataTransform
|
|
434
|
+
description: Put a data transform
|
|
435
|
+
responses:
|
|
436
|
+
'200':
|
|
437
|
+
description: Success
|
|
438
|
+
body:
|
|
439
|
+
application/json:
|
|
440
|
+
type: DataTransformRepresentation
|
|
441
|
+
queryParameters:
|
|
442
|
+
filterGroup:
|
|
443
|
+
type: string
|
|
444
|
+
required: false
|
|
445
|
+
body:
|
|
446
|
+
application/json:
|
|
447
|
+
type: DataTransformInputRepresentation
|
|
448
|
+
(oas-body-name): dataTransformObject
|
|
449
|
+
uriParameters:
|
|
450
|
+
dataTransformNameOrId:
|
|
451
|
+
type: string
|