@salesforce/lds-adapters-marketing-cdp 1.228.1 → 1.229.0-dev2

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.
@@ -365,11 +365,6 @@ function validate$4(obj, path = 'CdpDataGraphSourceObjectOutputRepresentation')
365
365
  return new TypeError('Expected "defined" but received "' + typeof obj_relatedObjects_item + '" (at "' + path_relatedObjects_item + '")');
366
366
  }
367
367
  }
368
- const obj_type = obj.type;
369
- const path_type = path + '.type';
370
- if (typeof obj_type !== 'string') {
371
- return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
372
- }
373
368
  })();
374
369
  return v_error === undefined ? null : v_error;
375
370
  }
@@ -380,7 +375,7 @@ function equals$4(existing, incoming) {
380
375
  return true;
381
376
  }
382
377
 
383
- const VERSION$2 = "d84f55c15c62e66d204c852f1e650ea4";
378
+ const VERSION$2 = "57c7ad707cc00b2b0eeb6a47d382feac";
384
379
  function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
385
380
  const validateCdpObjectBaseOutputRepresentation_validateError = validate$8(obj, path);
386
381
  if (validateCdpObjectBaseOutputRepresentation_validateError !== null) {
@@ -412,11 +407,6 @@ function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
412
407
  if (typeof obj_primaryObjectName !== 'string') {
413
408
  return new TypeError('Expected "string" but received "' + typeof obj_primaryObjectName + '" (at "' + path_primaryObjectName + '")');
414
409
  }
415
- const obj_primaryObjectType = obj.primaryObjectType;
416
- const path_primaryObjectType = path + '.primaryObjectType';
417
- if (typeof obj_primaryObjectType !== 'string') {
418
- return new TypeError('Expected "string" but received "' + typeof obj_primaryObjectType + '" (at "' + path_primaryObjectType + '")');
419
- }
420
410
  const obj_sourceObject = obj.sourceObject;
421
411
  const path_sourceObject = path + '.sourceObject';
422
412
  const referencepath_sourceObjectValidationError = validate$4(obj_sourceObject, path_sourceObject);
@@ -500,11 +490,6 @@ function equals$3(existing, incoming) {
500
490
  if (!(existing_primaryObjectName === incoming_primaryObjectName)) {
501
491
  return false;
502
492
  }
503
- const existing_primaryObjectType = existing.primaryObjectType;
504
- const incoming_primaryObjectType = incoming.primaryObjectType;
505
- if (!(existing_primaryObjectType === incoming_primaryObjectType)) {
506
- return false;
507
- }
508
493
  const existing_status = existing.status;
509
494
  const incoming_status = incoming.status;
510
495
  if (!(existing_status === incoming_status)) {
@@ -588,7 +573,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
588
573
  function createResourceRequest$4(config) {
589
574
  const headers = {};
590
575
  return {
591
- baseUri: '/services/data/v58.0',
576
+ baseUri: '/services/data/v59.0',
592
577
  basePath: '/ssot/data-graphs',
593
578
  method: 'post',
594
579
  body: config.body,
@@ -606,7 +591,6 @@ const createDataGraph_ConfigPropertyMetadata = [
606
591
  generateParamConfigMetadata('label', false, 2 /* Body */, 0 /* String */),
607
592
  generateParamConfigMetadata('name', false, 2 /* Body */, 0 /* String */),
608
593
  generateParamConfigMetadata('primaryObjectName', true, 2 /* Body */, 0 /* String */),
609
- generateParamConfigMetadata('primaryObjectType', true, 2 /* Body */, 0 /* String */),
610
594
  generateParamConfigMetadata('sourceObject', true, 2 /* Body */, 4 /* Unsupported */),
611
595
  generateParamConfigMetadata('type', false, 2 /* Body */, 0 /* String */),
612
596
  ];
@@ -698,7 +682,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
698
682
  function createResourceRequest$3(config) {
699
683
  const headers = {};
700
684
  return {
701
- baseUri: '/services/data/v58.0',
685
+ baseUri: '/services/data/v59.0',
702
686
  basePath: '/ssot/data-graphs/' + config.urlParams.dataGraphName + '',
703
687
  method: 'get',
704
688
  body: null,
@@ -815,7 +799,7 @@ function evictSuccess(luvio, resourceParams) {
815
799
  function createResourceRequest$2(config) {
816
800
  const headers = {};
817
801
  return {
818
- baseUri: '/services/data/v58.0',
802
+ baseUri: '/services/data/v59.0',
819
803
  basePath: '/ssot/data-graphs/' + config.urlParams.dataGraphName + '',
820
804
  method: 'delete',
821
805
  body: null,
@@ -978,7 +962,7 @@ function ingestSuccess$1(luvio, resourceParams, response) {
978
962
  function createResourceRequest$1(config) {
979
963
  const headers = {};
980
964
  return {
981
- baseUri: '/services/data/v58.0',
965
+ baseUri: '/services/data/v59.0',
982
966
  basePath: '/ssot/data-graphs/retry',
983
967
  method: 'put',
984
968
  body: config.body,
@@ -1235,7 +1219,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
1235
1219
  function createResourceRequest(config) {
1236
1220
  const headers = {};
1237
1221
  return {
1238
- baseUri: '/services/data/v58.0',
1222
+ baseUri: '/services/data/v59.0',
1239
1223
  basePath: '/ssot/data-graphs/dependency/' + config.urlParams.dataGraphName + '',
1240
1224
  method: 'get',
1241
1225
  body: null,
@@ -11,7 +11,6 @@ export interface CreateDataGraphConfig {
11
11
  label?: string;
12
12
  name?: string;
13
13
  primaryObjectName: string;
14
- primaryObjectType: string;
15
14
  sourceObject: unknown;
16
15
  type?: string;
17
16
  }
@@ -7,7 +7,6 @@ export interface ResourceRequestConfig {
7
7
  label?: string;
8
8
  name?: string;
9
9
  primaryObjectName: string;
10
- primaryObjectType: string;
11
10
  sourceObject: unknown;
12
11
  type?: string;
13
12
  };
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "babeb561d6149975f94a7c32dd80b12a";
2
+ export declare const VERSION = "0cdee3de0ba3dd07deadd26df48539ad";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: CdpDataGraphInputRepresentation, existing: CdpDataGraphInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpDataGraphInputRepresentationNormalized;
@@ -24,8 +24,6 @@ export interface CdpDataGraphInputRepresentationNormalized {
24
24
  name?: string;
25
25
  /** Primary Object Name */
26
26
  primaryObjectName: string;
27
- /** primary object type */
28
- primaryObjectType: string;
29
27
  /** source object */
30
28
  sourceObject: unknown;
31
29
  /** data graph type */
@@ -43,7 +41,6 @@ export interface CdpDataGraphInputRepresentation {
43
41
  label?: string;
44
42
  name?: string;
45
43
  primaryObjectName: string;
46
- primaryObjectType: string;
47
44
  sourceObject: unknown;
48
45
  type?: string;
49
46
  }
@@ -1,7 +1,7 @@
1
1
  import { keyBuilder as CdpObjectBaseOutputRepresentation_keyBuilder, CdpObjectBaseOutputRepresentation as CdpObjectBaseOutputRepresentation_CdpObjectBaseOutputRepresentation } from './CdpObjectBaseOutputRepresentation';
2
2
  import { CdpDataGraphSourceObjectOutputRepresentation as CdpDataGraphSourceObjectOutputRepresentation_CdpDataGraphSourceObjectOutputRepresentation } from './CdpDataGraphSourceObjectOutputRepresentation';
3
3
  import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
4
- export declare const VERSION = "d84f55c15c62e66d204c852f1e650ea4";
4
+ export declare const VERSION = "57c7ad707cc00b2b0eeb6a47d382feac";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: Parameters<typeof CdpObjectBaseOutputRepresentation_keyBuilder>[1]): string;
@@ -28,8 +28,6 @@ export interface CdpDataGraphOutputRepresentationNormalized extends CdpObjectBas
28
28
  lastRunStatus?: string;
29
29
  /** primary object developer name */
30
30
  primaryObjectName: string;
31
- /** primary object type */
32
- primaryObjectType: string;
33
31
  /** object */
34
32
  sourceObject: $64$luvio_engine_StoreLink;
35
33
  /** status */
@@ -52,7 +50,6 @@ export interface CdpDataGraphOutputRepresentation extends CdpObjectBaseOutputRep
52
50
  idDmoName: string;
53
51
  lastRunStatus?: string;
54
52
  primaryObjectName: string;
55
- primaryObjectType: string;
56
53
  sourceObject: CdpDataGraphSourceObjectOutputRepresentation_CdpDataGraphSourceObjectOutputRepresentation;
57
54
  status: string;
58
55
  type?: string;
@@ -2,7 +2,7 @@ import { CdpObjectBaseInputRepresentation as CdpObjectBaseInputRepresentation_Cd
2
2
  import { CdpDataGraphFieldInputRepresentation as CdpDataGraphFieldInputRepresentation_CdpDataGraphFieldInputRepresentation } from './CdpDataGraphFieldInputRepresentation';
3
3
  import { CdpDataGraphPathToParentInputRepresentation as CdpDataGraphPathToParentInputRepresentation_CdpDataGraphPathToParentInputRepresentation } from './CdpDataGraphPathToParentInputRepresentation';
4
4
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
5
- export declare const VERSION = "a8fa5973cd2fa703f25c948ca9fcea61";
5
+ export declare const VERSION = "fcd784ab8d7ff7d383a156d418bc6f24";
6
6
  export declare function validate(obj: any, path?: string): TypeError | null;
7
7
  export declare const RepresentationType: string;
8
8
  export declare function normalize(input: CdpDataGraphSourceInputRepresentation, existing: CdpDataGraphSourceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpDataGraphSourceInputRepresentationNormalized;
@@ -27,8 +27,6 @@ export interface CdpDataGraphSourceInputRepresentationNormalized extends CdpObje
27
27
  recencyCriteria: Array<{}>;
28
28
  /** relatedObjects */
29
29
  relatedObjects: Array<unknown>;
30
- /** type */
31
- type: string;
32
30
  }
33
31
  /**
34
32
  * Data Graph Source Object input representation
@@ -42,5 +40,4 @@ export interface CdpDataGraphSourceInputRepresentation extends CdpObjectBaseInpu
42
40
  path: Array<CdpDataGraphPathToParentInputRepresentation_CdpDataGraphPathToParentInputRepresentation>;
43
41
  recencyCriteria: Array<{}>;
44
42
  relatedObjects: Array<unknown>;
45
- type: string;
46
43
  }
@@ -2,7 +2,7 @@ import { CdpDataGraphFieldOutputRepresentation as CdpDataGraphFieldOutputReprese
2
2
  import { CdpDataGraphPathToParentOutputRepresentation as CdpDataGraphPathToParentOutputRepresentation_CdpDataGraphPathToParentOutputRepresentation } from './CdpDataGraphPathToParentOutputRepresentation';
3
3
  import { CdpDataGraphRecencyCriteriaOutputRepresentation as CdpDataGraphRecencyCriteriaOutputRepresentation_CdpDataGraphRecencyCriteriaOutputRepresentation } from './CdpDataGraphRecencyCriteriaOutputRepresentation';
4
4
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
5
- export declare const VERSION = "6a62db0f6a1fe5ff124d206088848bc4";
5
+ export declare const VERSION = "371f470d7d44949f1dcfa3f272b80d9c";
6
6
  export declare function validate(obj: any, path?: string): TypeError | null;
7
7
  export declare const RepresentationType: string;
8
8
  export declare function normalize(input: CdpDataGraphSourceObjectOutputRepresentation, existing: CdpDataGraphSourceObjectOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpDataGraphSourceObjectOutputRepresentationNormalized;
@@ -29,8 +29,6 @@ export interface CdpDataGraphSourceObjectOutputRepresentationNormalized {
29
29
  recencyCriteria?: Array<CdpDataGraphRecencyCriteriaOutputRepresentation_CdpDataGraphRecencyCriteriaOutputRepresentation>;
30
30
  /** relatedObjects */
31
31
  relatedObjects: Array<unknown>;
32
- /** type */
33
- type: string;
34
32
  }
35
33
  /**
36
34
  * Represents Cdp Data Graph Source Output
@@ -45,5 +43,4 @@ export interface CdpDataGraphSourceObjectOutputRepresentation {
45
43
  path?: Array<CdpDataGraphPathToParentOutputRepresentation_CdpDataGraphPathToParentOutputRepresentation>;
46
44
  recencyCriteria?: Array<CdpDataGraphRecencyCriteriaOutputRepresentation_CdpDataGraphRecencyCriteriaOutputRepresentation>;
47
45
  relatedObjects: Array<unknown>;
48
- type: string;
49
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-marketing-cdp",
3
- "version": "1.228.1",
3
+ "version": "1.229.0-dev2",
4
4
  "description": "LDS adapters for CDP",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/marketing-cdp.js",
@@ -44,11 +44,11 @@
44
44
  "test:unit": "jest"
45
45
  },
46
46
  "dependencies": {
47
- "@salesforce/lds-bindings": "*"
47
+ "@salesforce/lds-bindings": "1.229.0-dev2"
48
48
  },
49
49
  "devDependencies": {
50
- "@salesforce/lds-karma": "*",
51
- "@salesforce/lds-compiler-plugins": "*"
50
+ "@salesforce/lds-compiler-plugins": "1.229.0-dev2",
51
+ "@salesforce/lds-karma": "1.229.0-dev2"
52
52
  },
53
53
  "nx": {
54
54
  "targets": {
package/sfdc/index.js CHANGED
@@ -375,11 +375,6 @@ function validate$4(obj, path = 'CdpDataGraphSourceObjectOutputRepresentation')
375
375
  return new TypeError('Expected "defined" but received "' + typeof obj_relatedObjects_item + '" (at "' + path_relatedObjects_item + '")');
376
376
  }
377
377
  }
378
- const obj_type = obj.type;
379
- const path_type = path + '.type';
380
- if (typeof obj_type !== 'string') {
381
- return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
382
- }
383
378
  })();
384
379
  return v_error === undefined ? null : v_error;
385
380
  }
@@ -390,7 +385,7 @@ function equals$4(existing, incoming) {
390
385
  return true;
391
386
  }
392
387
 
393
- const VERSION$2 = "d84f55c15c62e66d204c852f1e650ea4";
388
+ const VERSION$2 = "57c7ad707cc00b2b0eeb6a47d382feac";
394
389
  function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
395
390
  const validateCdpObjectBaseOutputRepresentation_validateError = validate$8(obj, path);
396
391
  if (validateCdpObjectBaseOutputRepresentation_validateError !== null) {
@@ -422,11 +417,6 @@ function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
422
417
  if (typeof obj_primaryObjectName !== 'string') {
423
418
  return new TypeError('Expected "string" but received "' + typeof obj_primaryObjectName + '" (at "' + path_primaryObjectName + '")');
424
419
  }
425
- const obj_primaryObjectType = obj.primaryObjectType;
426
- const path_primaryObjectType = path + '.primaryObjectType';
427
- if (typeof obj_primaryObjectType !== 'string') {
428
- return new TypeError('Expected "string" but received "' + typeof obj_primaryObjectType + '" (at "' + path_primaryObjectType + '")');
429
- }
430
420
  const obj_sourceObject = obj.sourceObject;
431
421
  const path_sourceObject = path + '.sourceObject';
432
422
  const referencepath_sourceObjectValidationError = validate$4(obj_sourceObject, path_sourceObject);
@@ -510,11 +500,6 @@ function equals$3(existing, incoming) {
510
500
  if (!(existing_primaryObjectName === incoming_primaryObjectName)) {
511
501
  return false;
512
502
  }
513
- const existing_primaryObjectType = existing.primaryObjectType;
514
- const incoming_primaryObjectType = incoming.primaryObjectType;
515
- if (!(existing_primaryObjectType === incoming_primaryObjectType)) {
516
- return false;
517
- }
518
503
  const existing_status = existing.status;
519
504
  const incoming_status = incoming.status;
520
505
  if (!(existing_status === incoming_status)) {
@@ -598,7 +583,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
598
583
  function createResourceRequest$4(config) {
599
584
  const headers = {};
600
585
  return {
601
- baseUri: '/services/data/v58.0',
586
+ baseUri: '/services/data/v59.0',
602
587
  basePath: '/ssot/data-graphs',
603
588
  method: 'post',
604
589
  body: config.body,
@@ -616,7 +601,6 @@ const createDataGraph_ConfigPropertyMetadata = [
616
601
  generateParamConfigMetadata('label', false, 2 /* Body */, 0 /* String */),
617
602
  generateParamConfigMetadata('name', false, 2 /* Body */, 0 /* String */),
618
603
  generateParamConfigMetadata('primaryObjectName', true, 2 /* Body */, 0 /* String */),
619
- generateParamConfigMetadata('primaryObjectType', true, 2 /* Body */, 0 /* String */),
620
604
  generateParamConfigMetadata('sourceObject', true, 2 /* Body */, 4 /* Unsupported */),
621
605
  generateParamConfigMetadata('type', false, 2 /* Body */, 0 /* String */),
622
606
  ];
@@ -691,7 +675,7 @@ function evictSuccess(luvio, resourceParams) {
691
675
  function createResourceRequest$3(config) {
692
676
  const headers = {};
693
677
  return {
694
- baseUri: '/services/data/v58.0',
678
+ baseUri: '/services/data/v59.0',
695
679
  basePath: '/ssot/data-graphs/' + config.urlParams.dataGraphName + '',
696
680
  method: 'delete',
697
681
  body: null,
@@ -792,7 +776,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
792
776
  function createResourceRequest$2(config) {
793
777
  const headers = {};
794
778
  return {
795
- baseUri: '/services/data/v58.0',
779
+ baseUri: '/services/data/v59.0',
796
780
  basePath: '/ssot/data-graphs/' + config.urlParams.dataGraphName + '',
797
781
  method: 'get',
798
782
  body: null,
@@ -1118,7 +1102,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
1118
1102
  function createResourceRequest$1(config) {
1119
1103
  const headers = {};
1120
1104
  return {
1121
- baseUri: '/services/data/v58.0',
1105
+ baseUri: '/services/data/v59.0',
1122
1106
  basePath: '/ssot/data-graphs/dependency/' + config.urlParams.dataGraphName + '',
1123
1107
  method: 'get',
1124
1108
  body: null,
@@ -1350,7 +1334,7 @@ function ingestSuccess(luvio, resourceParams, response) {
1350
1334
  function createResourceRequest(config) {
1351
1335
  const headers = {};
1352
1336
  return {
1353
- baseUri: '/services/data/v58.0',
1337
+ baseUri: '/services/data/v59.0',
1354
1338
  basePath: '/ssot/data-graphs/retry',
1355
1339
  method: 'put',
1356
1340
  body: config.body,
@@ -1462,4 +1446,4 @@ withDefaultLuvio((luvio) => {
1462
1446
  });
1463
1447
 
1464
1448
  export { createDataGraph, deleteDataGraph, getDataGraph, getDataGraphDependency, getDataGraphDependencyNotifyChange, getDataGraphDependency_imperative, getDataGraphNotifyChange, getDataGraph_imperative, retryDataGraph };
1465
- // version: 1.228.1-0cb6f94f1
1449
+ // version: 1.229.0-dev2-696fe5026
package/src/raml/api.raml CHANGED
@@ -6,7 +6,7 @@ version: '58.0'
6
6
  mediaType: application/json
7
7
  protocols:
8
8
  - https
9
- baseUri: /services/data/v58.0
9
+ baseUri: /services/data/v59.0
10
10
  securitySchemes:
11
11
  OAuth2:
12
12
  type: OAuth 2.0
@@ -191,9 +191,6 @@ types:
191
191
  primaryObjectName:
192
192
  description: Primary Object Name
193
193
  type: string
194
- primaryObjectType:
195
- description: primary object type
196
- type: string
197
194
  sourceObject:
198
195
  description: source object
199
196
  type: any
@@ -235,18 +232,6 @@ types:
235
232
  type: array
236
233
  items:
237
234
  type: any #Add any to remove circular dependency
238
- type:
239
- description: type
240
- type: string
241
- enum:
242
- - BatchCI
243
- - Engagement
244
- - Other
245
- - Profile
246
- - RealTimeCI
247
- - SegmentHistory
248
- - SegmentLatest
249
- - StreamingCI
250
235
  CdpDataGraphOutputRepresentation:
251
236
  description: Represents Cdp Data Graph Output
252
237
  type: CdpObjectBaseOutputRepresentation
@@ -264,12 +249,6 @@ types:
264
249
  primaryObjectName:
265
250
  description: primary object developer name
266
251
  type: string
267
- primaryObjectType:
268
- description: primary object type
269
- type: string
270
- enum:
271
- - Cio
272
- - Dmo
273
252
  sourceObject:
274
253
  description: object
275
254
  type: CdpDataGraphSourceObjectOutputRepresentation
@@ -350,18 +329,6 @@ types:
350
329
  type: array
351
330
  items:
352
331
  type: any
353
- type:
354
- description: type
355
- type: string
356
- enum:
357
- - BatchCI
358
- - Engagement
359
- - Other
360
- - Profile
361
- - RealTimeCI
362
- - SegmentHistory
363
- - SegmentLatest
364
- - StreamingCI
365
332
  CdpDataGraphRetryInputRepresentation:
366
333
  description: Input representation for retry running error state CDP Data Graph
367
334
  type: object