@salesforce/lds-adapters-industries-context 1.370.0 → 1.372.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.
@@ -1223,7 +1223,7 @@ function equals$t(existing, incoming) {
1223
1223
  }
1224
1224
 
1225
1225
  const TTL$n = 1000;
1226
- const VERSION$s = "2a28e324b830c55d64e597f1df00c73a";
1226
+ const VERSION$s = "b9415d382c5aeb3ca74fd1e039fa0a61";
1227
1227
  function validate$K(obj, path = 'ContextDefinitionInfoRepresentation') {
1228
1228
  const v_error = (() => {
1229
1229
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -1276,6 +1276,20 @@ function validate$K(obj, path = 'ContextDefinitionInfoRepresentation') {
1276
1276
  return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
1277
1277
  }
1278
1278
  }
1279
+ if (obj.dataSpacesAccessible !== undefined) {
1280
+ const obj_dataSpacesAccessible = obj.dataSpacesAccessible;
1281
+ const path_dataSpacesAccessible = path + '.dataSpacesAccessible';
1282
+ if (!ArrayIsArray(obj_dataSpacesAccessible)) {
1283
+ return new TypeError('Expected "array" but received "' + typeof obj_dataSpacesAccessible + '" (at "' + path_dataSpacesAccessible + '")');
1284
+ }
1285
+ for (let i = 0; i < obj_dataSpacesAccessible.length; i++) {
1286
+ const obj_dataSpacesAccessible_item = obj_dataSpacesAccessible[i];
1287
+ const path_dataSpacesAccessible_item = path_dataSpacesAccessible + '[' + i + ']';
1288
+ if (typeof obj_dataSpacesAccessible_item !== 'string') {
1289
+ return new TypeError('Expected "string" but received "' + typeof obj_dataSpacesAccessible_item + '" (at "' + path_dataSpacesAccessible_item + '")');
1290
+ }
1291
+ }
1292
+ }
1279
1293
  if (obj.definition !== undefined) {
1280
1294
  const obj_definition = obj.definition;
1281
1295
  const path_definition = path + '.definition';
@@ -1455,6 +1469,12 @@ const select$19 = function ContextDefinitionInfoRepresentationSelect() {
1455
1469
  kind: 'Scalar',
1456
1470
  required: false
1457
1471
  },
1472
+ {
1473
+ name: 'dataSpacesAccessible',
1474
+ kind: 'Scalar',
1475
+ plural: true,
1476
+ required: false
1477
+ },
1458
1478
  {
1459
1479
  name: 'definition',
1460
1480
  kind: 'Scalar',
@@ -1819,6 +1839,24 @@ function equals$s(existing, incoming) {
1819
1839
  return false;
1820
1840
  }
1821
1841
  }
1842
+ const existing_dataSpacesAccessible = existing.dataSpacesAccessible;
1843
+ const incoming_dataSpacesAccessible = incoming.dataSpacesAccessible;
1844
+ // if at least one of these optionals is defined
1845
+ if (existing_dataSpacesAccessible !== undefined || incoming_dataSpacesAccessible !== undefined) {
1846
+ // if one of these is not defined we know the other is defined and therefore
1847
+ // not equal
1848
+ if (existing_dataSpacesAccessible === undefined || incoming_dataSpacesAccessible === undefined) {
1849
+ return false;
1850
+ }
1851
+ const equals_dataSpacesAccessible_items = equalsArray(existing_dataSpacesAccessible, incoming_dataSpacesAccessible, (existing_dataSpacesAccessible_item, incoming_dataSpacesAccessible_item) => {
1852
+ if (!(existing_dataSpacesAccessible_item === incoming_dataSpacesAccessible_item)) {
1853
+ return false;
1854
+ }
1855
+ });
1856
+ if (equals_dataSpacesAccessible_items === false) {
1857
+ return false;
1858
+ }
1859
+ }
1822
1860
  const existing_referenceContextDefinitions = existing.referenceContextDefinitions;
1823
1861
  const incoming_referenceContextDefinitions = incoming.referenceContextDefinitions;
1824
1862
  // if at least one of these optionals is defined
@@ -9367,6 +9405,13 @@ function validate$g(obj, path = 'ContextMappingCloneInputRepresentation') {
9367
9405
  if (typeof obj_contextMappingName !== 'string') {
9368
9406
  return new TypeError('Expected "string" but received "' + typeof obj_contextMappingName + '" (at "' + path_contextMappingName + '")');
9369
9407
  }
9408
+ if (obj.dmoToTargetDataSpace !== undefined) {
9409
+ const obj_dmoToTargetDataSpace = obj.dmoToTargetDataSpace;
9410
+ const path_dmoToTargetDataSpace = path + '.dmoToTargetDataSpace';
9411
+ if (obj_dmoToTargetDataSpace === undefined) {
9412
+ return new TypeError('Expected "defined" but received "' + typeof obj_dmoToTargetDataSpace + '" (at "' + path_dmoToTargetDataSpace + '")');
9413
+ }
9414
+ }
9370
9415
  const obj_originalContextMappingId = obj.originalContextMappingId;
9371
9416
  const path_originalContextMappingId = path + '.originalContextMappingId';
9372
9417
  if (typeof obj_originalContextMappingId !== 'string') {
@@ -1,7 +1,7 @@
1
1
  import { ContextDefinitionReferenceRepresentation as ContextDefinitionReferenceRepresentation_ContextDefinitionReferenceRepresentation } from './ContextDefinitionReferenceRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
3
  export declare const TTL = 1000;
4
- export declare const VERSION = "2a28e324b830c55d64e597f1df00c73a";
4
+ export declare const VERSION = "b9415d382c5aeb3ca74fd1e039fa0a61";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -39,6 +39,8 @@ export interface ContextDefinitionInfoRepresentationNormalized {
39
39
  createdBy?: string;
40
40
  /** Created Date */
41
41
  createdDate?: string;
42
+ /** Accessible Data Spaces Names */
43
+ dataSpacesAccessible?: Array<string>;
42
44
  /** Definition */
43
45
  definition?: string;
44
46
  /** Definition Type */
@@ -86,6 +88,7 @@ export interface ContextDefinitionInfoRepresentation {
86
88
  contextTtl?: number;
87
89
  createdBy?: string;
88
90
  createdDate?: string;
91
+ dataSpacesAccessible?: Array<string>;
89
92
  definition?: string;
90
93
  definitionType?: string;
91
94
  description?: string;
@@ -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, FragmentSelection as $64$luvio_engine_FragmentSelection, 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 = "73965973f7dd20a36441ec28bb3beb09";
2
+ export declare const VERSION = "5895c1873e08fcc5da18cd1c6882f37e";
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: ContextMappingCloneInputRepresentation, existing: ContextMappingCloneInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextMappingCloneInputRepresentationNormalized;
@@ -16,6 +16,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
16
  export interface ContextMappingCloneInputRepresentationNormalized {
17
17
  /** Context Mapping Name - Required for Clone */
18
18
  contextMappingName: string;
19
+ /** DMO to Target Data Space mappings */
20
+ dmoToTargetDataSpace?: unknown;
19
21
  /** ID of this Original Context Mapping - Required for Cloning */
20
22
  originalContextMappingId: string;
21
23
  }
@@ -27,5 +29,6 @@ export interface ContextMappingCloneInputRepresentationNormalized {
27
29
  */
28
30
  export interface ContextMappingCloneInputRepresentation {
29
31
  contextMappingName: string;
32
+ dmoToTargetDataSpace?: unknown;
30
33
  originalContextMappingId: string;
31
34
  }
@@ -0,0 +1,31 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, 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 = "ea5284608566b359673ac56a703bc4b5";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DmoToTargetDataSpaceInputRepresentation, existing: DmoToTargetDataSpaceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DmoToTargetDataSpaceInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DmoToTargetDataSpaceInputRepresentationNormalized, incoming: DmoToTargetDataSpaceInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DmoToTargetDataSpaceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation of DMO to Target Data Space mapping
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DmoToTargetDataSpaceInputRepresentationNormalized {
17
+ /** DMO API Name */
18
+ dmoAPIName: string;
19
+ /** Target Data Space */
20
+ targetDataSpace: string;
21
+ }
22
+ /**
23
+ * Input representation of DMO to Target Data Space mapping
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface DmoToTargetDataSpaceInputRepresentation {
29
+ dmoAPIName: string;
30
+ targetDataSpace: string;
31
+ }
@@ -0,0 +1,29 @@
1
+ import { DmoToTargetDataSpaceInputRepresentation as DmoToTargetDataSpaceInputRepresentation_DmoToTargetDataSpaceInputRepresentation } from './DmoToTargetDataSpaceInputRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "115a93f8048b8bcf63589fd01e6c902b";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DmoToTargetDataSpaceListInputRepresentation, existing: DmoToTargetDataSpaceListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DmoToTargetDataSpaceListInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: DmoToTargetDataSpaceListInputRepresentationNormalized, incoming: DmoToTargetDataSpaceListInputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DmoToTargetDataSpaceListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Input representation of DMO to Target Data Space List
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DmoToTargetDataSpaceListInputRepresentationNormalized {
18
+ /** List of DMO to Target Data Space mappings */
19
+ dmoToTargetDataSpaceList: Array<DmoToTargetDataSpaceInputRepresentation_DmoToTargetDataSpaceInputRepresentation>;
20
+ }
21
+ /**
22
+ * Input representation of DMO to Target Data Space List
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface DmoToTargetDataSpaceListInputRepresentation {
28
+ dmoToTargetDataSpaceList: Array<DmoToTargetDataSpaceInputRepresentation_DmoToTargetDataSpaceInputRepresentation>;
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-context",
3
- "version": "1.370.0",
3
+ "version": "1.372.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Normandy Context Service",
6
6
  "main": "dist/es/es2018/industries-context.js",
@@ -44,14 +44,14 @@
44
44
  "test:unit": "jest --config=./jest.config.js"
45
45
  },
46
46
  "dependencies": {
47
- "@salesforce/lds-bindings": "^1.370.0"
47
+ "@salesforce/lds-bindings": "^1.372.0"
48
48
  },
49
49
  "volta": {
50
50
  "extends": "../../package.json"
51
51
  },
52
52
  "devDependencies": {
53
- "@salesforce/lds-compiler-plugins": "^1.370.0",
54
- "@salesforce/lds-karma": "^1.370.0"
53
+ "@salesforce/lds-compiler-plugins": "^1.372.0",
54
+ "@salesforce/lds-karma": "^1.372.0"
55
55
  },
56
56
  "nx": {
57
57
  "targets": {
package/sfdc/index.js CHANGED
@@ -132,6 +132,13 @@ function validate$Q(obj, path = 'ContextMappingCloneInputRepresentation') {
132
132
  if (typeof obj_contextMappingName !== 'string') {
133
133
  return new TypeError('Expected "string" but received "' + typeof obj_contextMappingName + '" (at "' + path_contextMappingName + '")');
134
134
  }
135
+ if (obj.dmoToTargetDataSpace !== undefined) {
136
+ const obj_dmoToTargetDataSpace = obj.dmoToTargetDataSpace;
137
+ const path_dmoToTargetDataSpace = path + '.dmoToTargetDataSpace';
138
+ if (obj_dmoToTargetDataSpace === undefined) {
139
+ return new TypeError('Expected "defined" but received "' + typeof obj_dmoToTargetDataSpace + '" (at "' + path_dmoToTargetDataSpace + '")');
140
+ }
141
+ }
135
142
  const obj_originalContextMappingId = obj.originalContextMappingId;
136
143
  const path_originalContextMappingId = path + '.originalContextMappingId';
137
144
  if (typeof obj_originalContextMappingId !== 'string') {
@@ -5415,7 +5422,7 @@ function equals$g(existing, incoming) {
5415
5422
  }
5416
5423
 
5417
5424
  const TTL$a = 1000;
5418
- const VERSION$f = "2a28e324b830c55d64e597f1df00c73a";
5425
+ const VERSION$f = "b9415d382c5aeb3ca74fd1e039fa0a61";
5419
5426
  function validate$j(obj, path = 'ContextDefinitionInfoRepresentation') {
5420
5427
  const v_error = (() => {
5421
5428
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -5468,6 +5475,20 @@ function validate$j(obj, path = 'ContextDefinitionInfoRepresentation') {
5468
5475
  return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
5469
5476
  }
5470
5477
  }
5478
+ if (obj.dataSpacesAccessible !== undefined) {
5479
+ const obj_dataSpacesAccessible = obj.dataSpacesAccessible;
5480
+ const path_dataSpacesAccessible = path + '.dataSpacesAccessible';
5481
+ if (!ArrayIsArray(obj_dataSpacesAccessible)) {
5482
+ return new TypeError('Expected "array" but received "' + typeof obj_dataSpacesAccessible + '" (at "' + path_dataSpacesAccessible + '")');
5483
+ }
5484
+ for (let i = 0; i < obj_dataSpacesAccessible.length; i++) {
5485
+ const obj_dataSpacesAccessible_item = obj_dataSpacesAccessible[i];
5486
+ const path_dataSpacesAccessible_item = path_dataSpacesAccessible + '[' + i + ']';
5487
+ if (typeof obj_dataSpacesAccessible_item !== 'string') {
5488
+ return new TypeError('Expected "string" but received "' + typeof obj_dataSpacesAccessible_item + '" (at "' + path_dataSpacesAccessible_item + '")');
5489
+ }
5490
+ }
5491
+ }
5471
5492
  if (obj.definition !== undefined) {
5472
5493
  const obj_definition = obj.definition;
5473
5494
  const path_definition = path + '.definition';
@@ -5647,6 +5668,12 @@ const select$P = function ContextDefinitionInfoRepresentationSelect() {
5647
5668
  kind: 'Scalar',
5648
5669
  required: false
5649
5670
  },
5671
+ {
5672
+ name: 'dataSpacesAccessible',
5673
+ kind: 'Scalar',
5674
+ plural: true,
5675
+ required: false
5676
+ },
5650
5677
  {
5651
5678
  name: 'definition',
5652
5679
  kind: 'Scalar',
@@ -6011,6 +6038,24 @@ function equals$f(existing, incoming) {
6011
6038
  return false;
6012
6039
  }
6013
6040
  }
6041
+ const existing_dataSpacesAccessible = existing.dataSpacesAccessible;
6042
+ const incoming_dataSpacesAccessible = incoming.dataSpacesAccessible;
6043
+ // if at least one of these optionals is defined
6044
+ if (existing_dataSpacesAccessible !== undefined || incoming_dataSpacesAccessible !== undefined) {
6045
+ // if one of these is not defined we know the other is defined and therefore
6046
+ // not equal
6047
+ if (existing_dataSpacesAccessible === undefined || incoming_dataSpacesAccessible === undefined) {
6048
+ return false;
6049
+ }
6050
+ const equals_dataSpacesAccessible_items = equalsArray(existing_dataSpacesAccessible, incoming_dataSpacesAccessible, (existing_dataSpacesAccessible_item, incoming_dataSpacesAccessible_item) => {
6051
+ if (!(existing_dataSpacesAccessible_item === incoming_dataSpacesAccessible_item)) {
6052
+ return false;
6053
+ }
6054
+ });
6055
+ if (equals_dataSpacesAccessible_items === false) {
6056
+ return false;
6057
+ }
6058
+ }
6014
6059
  const existing_referenceContextDefinitions = existing.referenceContextDefinitions;
6015
6060
  const incoming_referenceContextDefinitions = incoming.referenceContextDefinitions;
6016
6061
  // if at least one of these optionals is defined
@@ -15072,4 +15117,4 @@ withDefaultLuvio((luvio) => {
15072
15117
  });
15073
15118
 
15074
15119
  export { cloneContextMappings, createContextAttributeMapping, createContextAttributeMappings, createContextAttributes, createContextFilters, createContextMapping, createContextMappings, createContextNodeMapping, createContextNodeMappings, createContextNodes, createContextQueryRecords, createContextServiceDefinition, createContextTags, deleteContext, deleteContextAttributeMapping, deleteContextFilter, deleteContextMapping, deleteContextNodeMapping, deleteContextServiceAttribute, deleteContextServiceAttributeMapping, deleteContextServiceDefinition, deleteContextServiceMapping, deleteContextServiceNode, deleteContextServiceNodeMapping, deleteContextServiceTag, getContext, getContextAttributeMapping, getContextAttributeMappingNotifyChange, getContextAttributeMapping_imperative, getContextDefinitions, getContextDefinitions_imperative, getContextFilter, getContextFilterNotifyChange, getContextFilter_imperative, getContextFilters, getContextFiltersNotifyChange, getContextFilters_imperative, getContextInfo, getContextInfoNotifyChange, getContextInfo_imperative, getContextMapping, getContextMappingNotifyChange, getContextMapping_imperative, getContextNodeMapping, getContextNodeMappingNotifyChange, getContextNodeMapping_imperative, getContextNotifyChange, getContextServiceAccess, getContextServiceAccessNotifyChange, getContextServiceAccess_imperative, getContextServiceAttribute, getContextServiceAttributeMapping, getContextServiceAttributeMappingNotifyChange, getContextServiceAttributeMapping_imperative, getContextServiceAttributeNotifyChange, getContextServiceAttribute_imperative, getContextServiceDefinition, getContextServiceDefinitionInfo, getContextServiceDefinitionInfoNotifyChange, getContextServiceDefinitionInfo_imperative, getContextServiceDefinitionNotifyChange, getContextServiceDefinition_imperative, getContextServiceMapping, getContextServiceMappingNotifyChange, getContextServiceMapping_imperative, getContextServiceNode, getContextServiceNodeMapping, getContextServiceNodeMappingNotifyChange, getContextServiceNodeMapping_imperative, getContextServiceNodeNotifyChange, getContextServiceNode_imperative, getContextServiceTag, getContextServiceTagNotifyChange, getContextServiceTag_imperative, getContextTags, getContextTagsNotifyChange, getContextTags_imperative, getContextTranslation, getContextTranslation_imperative, getContext_imperative, getDynamicAttributes, getDynamicAttributesNotifyChange, getDynamicAttributes_imperative, putContextServiceAccess, queryContextRecordAndChildren, updateContextAttributeMapping, updateContextAttributeMappings, updateContextAttributes, updateContextFilter, updateContextMapping, updateContextMappings, updateContextNodeMapping, updateContextNodeMappings, updateContextNodes, updateContextServiceDefinition, updateContextTags, upgradeContextServiceDefinition };
15075
- // version: 1.370.0-7c1df2520b
15120
+ // version: 1.372.0-59e8aa192f
package/src/raml/api.raml CHANGED
@@ -695,6 +695,25 @@ types:
695
695
  description: Processing Status
696
696
  type: string
697
697
  required: false
698
+ DmoToTargetDataSpaceInputRepresentation:
699
+ description: Input representation of DMO to Target Data Space mapping
700
+ type: object
701
+ properties:
702
+ dmoAPIName:
703
+ description: DMO API Name
704
+ type: string
705
+ targetDataSpace:
706
+ description: Target Data Space
707
+ type: string
708
+ DmoToTargetDataSpaceListInputRepresentation:
709
+ description: Input representation of DMO to Target Data Space List
710
+ type: object
711
+ properties:
712
+ dmoToTargetDataSpaceList:
713
+ description: List of DMO to Target Data Space mappings
714
+ type: array
715
+ items:
716
+ type: DmoToTargetDataSpaceInputRepresentation
698
717
  ErrorResponseRepresentation:
699
718
  description: The error in the graph response.
700
719
  type: object
@@ -885,6 +904,12 @@ types:
885
904
  description: Created Date
886
905
  type: string
887
906
  required: false
907
+ dataSpacesAccessible:
908
+ description: Accessible Data Spaces Names
909
+ type: array
910
+ required: false
911
+ items:
912
+ type: string
888
913
  definition:
889
914
  description: Definition
890
915
  type: string
@@ -1473,6 +1498,10 @@ types:
1473
1498
  contextMappingName:
1474
1499
  description: Context Mapping Name - Required for Clone
1475
1500
  type: string
1501
+ dmoToTargetDataSpace:
1502
+ description: DMO to Target Data Space mappings
1503
+ type: any # TODO Hand-rolled W-18961943
1504
+ required: false # TODO Hand-rolled W-18961943
1476
1505
  originalContextMappingId:
1477
1506
  description: ID of this Original Context Mapping - Required for Cloning
1478
1507
  type: string