@salesforce/lds-adapters-industries-epc 1.296.1 → 1.298.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.
@@ -334,6 +334,20 @@ function validate$z(obj, path = 'IndexConfigurationFieldOutputRepresentation') {
334
334
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
335
335
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
336
336
  }
337
+ if (obj.attributeDefinitionId !== undefined) {
338
+ const obj_attributeDefinitionId = obj.attributeDefinitionId;
339
+ const path_attributeDefinitionId = path + '.attributeDefinitionId';
340
+ if (typeof obj_attributeDefinitionId !== 'string') {
341
+ return new TypeError('Expected "string" but received "' + typeof obj_attributeDefinitionId + '" (at "' + path_attributeDefinitionId + '")');
342
+ }
343
+ }
344
+ if (obj.attributeFieldId !== undefined) {
345
+ const obj_attributeFieldId = obj.attributeFieldId;
346
+ const path_attributeFieldId = path + '.attributeFieldId';
347
+ if (typeof obj_attributeFieldId !== 'string') {
348
+ return new TypeError('Expected "string" but received "' + typeof obj_attributeFieldId + '" (at "' + path_attributeFieldId + '")');
349
+ }
350
+ }
337
351
  if (obj.isDisplayable !== undefined) {
338
352
  const obj_isDisplayable = obj.isDisplayable;
339
353
  const path_isDisplayable = path + '.isDisplayable';
@@ -378,6 +392,13 @@ function validate$y(obj, path = 'FieldsInfoOutputRepresentation') {
378
392
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
379
393
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
380
394
  }
395
+ if (obj.customFieldId !== undefined) {
396
+ const obj_customFieldId = obj.customFieldId;
397
+ const path_customFieldId = path + '.customFieldId';
398
+ if (typeof obj_customFieldId !== 'string') {
399
+ return new TypeError('Expected "string" but received "' + typeof obj_customFieldId + '" (at "' + path_customFieldId + '")');
400
+ }
401
+ }
381
402
  if (obj.isConfigurable !== undefined) {
382
403
  const obj_isConfigurable = obj.isConfigurable;
383
404
  const path_isConfigurable = path + '.isConfigurable';
@@ -545,7 +566,7 @@ function select$j(luvio, params) {
545
566
  return select$k();
546
567
  }
547
568
  function keyBuilder$g(luvio, params) {
548
- return keyPrefix + '::IndexConfigurationCollectionOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ')';
569
+ return keyPrefix + '::IndexConfigurationCollectionOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ',' + 'fieldTypes:' + params.queryParams.fieldTypes + ',' + 'includeMetadata:' + params.queryParams.includeMetadata + ')';
549
570
  }
550
571
  function getResponseCacheKeys$9(storeKeyMap, luvio, resourceParams, response) {
551
572
  getTypeCacheKeys$9(storeKeyMap, luvio, response, () => keyBuilder$g(luvio, resourceParams));
@@ -596,6 +617,8 @@ function createResourceRequest$9(config) {
596
617
  const adapterName$9 = 'getIndexConfigurations';
597
618
  const getIndexConfigurations_ConfigPropertyMetadata = [
598
619
  generateParamConfigMetadata('correlationId', false, 1 /* QueryParameter */, 0 /* String */),
620
+ generateParamConfigMetadata('fieldTypes', false, 1 /* QueryParameter */, 0 /* String */, true),
621
+ generateParamConfigMetadata('includeMetadata', false, 1 /* QueryParameter */, 1 /* Boolean */),
599
622
  ];
600
623
  const getIndexConfigurations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$9, getIndexConfigurations_ConfigPropertyMetadata);
601
624
  const createResourceParams$9 = /*#__PURE__*/ createResourceParams$b(getIndexConfigurations_ConfigPropertyMetadata);
@@ -789,7 +812,7 @@ function createResourceRequest$8(config) {
789
812
  method: 'put',
790
813
  body: config.body,
791
814
  urlParams: {},
792
- queryParams: config.queryParams,
815
+ queryParams: {},
793
816
  headers,
794
817
  priority: 'normal',
795
818
  };
@@ -797,7 +820,7 @@ function createResourceRequest$8(config) {
797
820
 
798
821
  const adapterName$8 = 'updateIndexConfigurations';
799
822
  const updateIndexConfigurations_ConfigPropertyMetadata = [
800
- generateParamConfigMetadata('correlationId', false, 1 /* QueryParameter */, 0 /* String */),
823
+ generateParamConfigMetadata('correlationId', false, 2 /* Body */, 0 /* String */),
801
824
  generateParamConfigMetadata('indexConfigurations', true, 2 /* Body */, 4 /* Unsupported */, true),
802
825
  ];
803
826
  const updateIndexConfigurations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$8, updateIndexConfigurations_ConfigPropertyMetadata);
@@ -7,6 +7,8 @@ export declare const getIndexConfigurations_ConfigPropertyMetadata: $64$luvio_en
7
7
  export declare const getIndexConfigurations_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface GetIndexConfigurationsConfig {
9
9
  correlationId?: string;
10
+ fieldTypes?: Array<string>;
11
+ includeMetadata?: boolean;
10
12
  }
11
13
  export declare const createResourceParams: (config: GetIndexConfigurationsConfig) => resources_getConnectPcmIndexConfigurations_ResourceRequestConfig;
12
14
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetIndexConfigurationsConfig): string;
@@ -3,6 +3,8 @@ import { IndexConfigurationCollectionOutputRepresentation as types_IndexConfigur
3
3
  export interface ResourceRequestConfig {
4
4
  queryParams: {
5
5
  correlationId?: string;
6
+ fieldTypes?: Array<string>;
7
+ includeMetadata?: boolean;
6
8
  };
7
9
  }
8
10
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,10 +1,8 @@
1
1
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
2
  import { IndexConfigurationsUpdateOutputRepresentation as types_IndexConfigurationsUpdateOutputRepresentation_IndexConfigurationsUpdateOutputRepresentation } from '../types/IndexConfigurationsUpdateOutputRepresentation';
3
3
  export interface ResourceRequestConfig {
4
- queryParams: {
5
- correlationId?: string;
6
- };
7
4
  body: {
5
+ correlationId?: string;
8
6
  indexConfigurations: Array<unknown>;
9
7
  };
10
8
  }
@@ -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 = "b63f313eeae9cad7cf3c7ac6ec5fa765";
2
+ export declare const VERSION = "d3e56a45a92c1bceac31214d2795c699";
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: FieldsInfoOutputRepresentation, existing: FieldsInfoOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FieldsInfoOutputRepresentationNormalized;
@@ -14,6 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface FieldsInfoOutputRepresentationNormalized {
17
+ /** customFieldId */
18
+ customFieldId?: string;
17
19
  /** isConfigurable */
18
20
  isConfigurable?: boolean;
19
21
  /** label */
@@ -30,6 +32,7 @@ export interface FieldsInfoOutputRepresentationNormalized {
30
32
  * (none)
31
33
  */
32
34
  export interface FieldsInfoOutputRepresentation {
35
+ customFieldId?: string;
33
36
  isConfigurable?: boolean;
34
37
  label?: string;
35
38
  name?: 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 = "f3805fbf5a70c397056dd9e9f7be7384";
2
+ export declare const VERSION = "9c62c3c793ae3a330e946eebeb6ae034";
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: IndexConfigurationCollectionInputRepresentation, existing: IndexConfigurationCollectionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IndexConfigurationCollectionInputRepresentationNormalized;
@@ -14,6 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface IndexConfigurationCollectionInputRepresentationNormalized {
17
+ /** correlationId */
18
+ correlationId?: string;
17
19
  /** indexConfigurations */
18
20
  indexConfigurations: Array<unknown>;
19
21
  }
@@ -24,5 +26,6 @@ export interface IndexConfigurationCollectionInputRepresentationNormalized {
24
26
  * (none)
25
27
  */
26
28
  export interface IndexConfigurationCollectionInputRepresentation {
29
+ correlationId?: string;
27
30
  indexConfigurations: Array<unknown>;
28
31
  }
@@ -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 = "e2415a67ddbf84c9ae8a529e8feedc0a";
2
+ export declare const VERSION = "da2058c94774e84be7d29e36a3ff08d5";
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: IndexConfigurationFieldOutputRepresentation, existing: IndexConfigurationFieldOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IndexConfigurationFieldOutputRepresentationNormalized;
@@ -14,6 +14,10 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface IndexConfigurationFieldOutputRepresentationNormalized {
17
+ /** attributeDefinitionId */
18
+ attributeDefinitionId?: string;
19
+ /** attributeFieldId */
20
+ attributeFieldId?: string;
17
21
  /** IsDisplayable */
18
22
  isDisplayable?: boolean;
19
23
  /** IsSearchable */
@@ -32,6 +36,8 @@ export interface IndexConfigurationFieldOutputRepresentationNormalized {
32
36
  * (none)
33
37
  */
34
38
  export interface IndexConfigurationFieldOutputRepresentation {
39
+ attributeDefinitionId?: string;
40
+ attributeFieldId?: string;
35
41
  isDisplayable?: boolean;
36
42
  isSearchable?: boolean;
37
43
  label?: 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 = "61067b85740f6d851852fb40c797ef33";
2
+ export declare const VERSION = "ed17d8a52e8898476f21a505fc3d043c";
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: IndexConfigurationInputRepresentation, existing: IndexConfigurationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IndexConfigurationInputRepresentationNormalized;
@@ -14,6 +14,10 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface IndexConfigurationInputRepresentationNormalized {
17
+ /** attributeDefinitionId */
18
+ attributeDefinitionId?: string;
19
+ /** attributeFieldId */
20
+ attributeFieldId?: string;
17
21
  /** isDisplayable */
18
22
  isDisplayable?: boolean;
19
23
  /** isSearchable */
@@ -32,6 +36,8 @@ export interface IndexConfigurationInputRepresentationNormalized {
32
36
  * (none)
33
37
  */
34
38
  export interface IndexConfigurationInputRepresentation {
39
+ attributeDefinitionId?: string;
40
+ attributeFieldId?: string;
35
41
  isDisplayable?: boolean;
36
42
  isSearchable?: boolean;
37
43
  label?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-epc",
3
- "version": "1.296.1",
3
+ "version": "1.298.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "APIs for EPCNext project",
6
6
  "main": "dist/es/es2018/industries-epc.js",
@@ -44,11 +44,11 @@
44
44
  "test:unit": "jest --config=./jest.config.js"
45
45
  },
46
46
  "dependencies": {
47
- "@salesforce/lds-bindings": "^1.296.1"
47
+ "@salesforce/lds-bindings": "^1.298.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@salesforce/lds-compiler-plugins": "^1.296.1",
51
- "@salesforce/lds-karma": "^1.296.1"
50
+ "@salesforce/lds-compiler-plugins": "^1.298.0",
51
+ "@salesforce/lds-karma": "^1.298.0"
52
52
  },
53
53
  "nx": {
54
54
  "targets": {
package/sfdc/index.js CHANGED
@@ -1573,6 +1573,20 @@ function validate$k(obj, path = 'IndexConfigurationFieldOutputRepresentation') {
1573
1573
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
1574
1574
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
1575
1575
  }
1576
+ if (obj.attributeDefinitionId !== undefined) {
1577
+ const obj_attributeDefinitionId = obj.attributeDefinitionId;
1578
+ const path_attributeDefinitionId = path + '.attributeDefinitionId';
1579
+ if (typeof obj_attributeDefinitionId !== 'string') {
1580
+ return new TypeError('Expected "string" but received "' + typeof obj_attributeDefinitionId + '" (at "' + path_attributeDefinitionId + '")');
1581
+ }
1582
+ }
1583
+ if (obj.attributeFieldId !== undefined) {
1584
+ const obj_attributeFieldId = obj.attributeFieldId;
1585
+ const path_attributeFieldId = path + '.attributeFieldId';
1586
+ if (typeof obj_attributeFieldId !== 'string') {
1587
+ return new TypeError('Expected "string" but received "' + typeof obj_attributeFieldId + '" (at "' + path_attributeFieldId + '")');
1588
+ }
1589
+ }
1576
1590
  if (obj.isDisplayable !== undefined) {
1577
1591
  const obj_isDisplayable = obj.isDisplayable;
1578
1592
  const path_isDisplayable = path + '.isDisplayable';
@@ -1617,6 +1631,13 @@ function validate$j(obj, path = 'FieldsInfoOutputRepresentation') {
1617
1631
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
1618
1632
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
1619
1633
  }
1634
+ if (obj.customFieldId !== undefined) {
1635
+ const obj_customFieldId = obj.customFieldId;
1636
+ const path_customFieldId = path + '.customFieldId';
1637
+ if (typeof obj_customFieldId !== 'string') {
1638
+ return new TypeError('Expected "string" but received "' + typeof obj_customFieldId + '" (at "' + path_customFieldId + '")');
1639
+ }
1640
+ }
1620
1641
  if (obj.isConfigurable !== undefined) {
1621
1642
  const obj_isConfigurable = obj.isConfigurable;
1622
1643
  const path_isConfigurable = path + '.isConfigurable';
@@ -1784,7 +1805,7 @@ function select$a(luvio, params) {
1784
1805
  return select$b();
1785
1806
  }
1786
1807
  function keyBuilder$a(luvio, params) {
1787
- return keyPrefix + '::IndexConfigurationCollectionOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ')';
1808
+ return keyPrefix + '::IndexConfigurationCollectionOutputRepresentation:(' + 'correlationId:' + params.queryParams.correlationId + ',' + 'fieldTypes:' + params.queryParams.fieldTypes + ',' + 'includeMetadata:' + params.queryParams.includeMetadata + ')';
1788
1809
  }
1789
1810
  function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
1790
1811
  getTypeCacheKeys$5(storeKeyMap, luvio, response, () => keyBuilder$a(luvio, resourceParams));
@@ -1835,6 +1856,8 @@ function createResourceRequest$5(config) {
1835
1856
  const adapterName$5 = 'getIndexConfigurations';
1836
1857
  const getIndexConfigurations_ConfigPropertyMetadata = [
1837
1858
  generateParamConfigMetadata('correlationId', false, 1 /* QueryParameter */, 0 /* String */),
1859
+ generateParamConfigMetadata('fieldTypes', false, 1 /* QueryParameter */, 0 /* String */, true),
1860
+ generateParamConfigMetadata('includeMetadata', false, 1 /* QueryParameter */, 1 /* Boolean */),
1838
1861
  ];
1839
1862
  const getIndexConfigurations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$5, getIndexConfigurations_ConfigPropertyMetadata);
1840
1863
  const createResourceParams$5 = /*#__PURE__*/ createResourceParams$b(getIndexConfigurations_ConfigPropertyMetadata);
@@ -3717,7 +3740,7 @@ function createResourceRequest(config) {
3717
3740
  method: 'put',
3718
3741
  body: config.body,
3719
3742
  urlParams: {},
3720
- queryParams: config.queryParams,
3743
+ queryParams: {},
3721
3744
  headers,
3722
3745
  priority: 'normal',
3723
3746
  };
@@ -3725,7 +3748,7 @@ function createResourceRequest(config) {
3725
3748
 
3726
3749
  const adapterName = 'updateIndexConfigurations';
3727
3750
  const updateIndexConfigurations_ConfigPropertyMetadata = [
3728
- generateParamConfigMetadata('correlationId', false, 1 /* QueryParameter */, 0 /* String */),
3751
+ generateParamConfigMetadata('correlationId', false, 2 /* Body */, 0 /* String */),
3729
3752
  generateParamConfigMetadata('indexConfigurations', true, 2 /* Body */, 4 /* Unsupported */, true),
3730
3753
  ];
3731
3754
  const updateIndexConfigurations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, updateIndexConfigurations_ConfigPropertyMetadata);
@@ -3893,4 +3916,4 @@ withDefaultLuvio((luvio) => {
3893
3916
  });
3894
3917
 
3895
3918
  export { createProductAttributeDefinition, deactivate, deploySnapshotIndex, getConfigRuleMetadata, getConfigRuleMetadata_imperative, getContextDefinitionInfoById, getContextDefinitionInfoById_imperative, getIndexConfigurations, getIndexConfigurations_imperative, getProductAttributesByProductId, getProductAttributesByProductId_imperative, getProductById, getProductById_imperative, getProductFlowByProductId, getProductFlowByProductId_imperative, getSnapshots, getSnapshots_imperative, updateIndexConfigurations };
3896
- // version: 1.296.1-cf86708a0
3919
+ // version: 1.298.0-6f15dc1ec
package/src/raml/api.raml CHANGED
@@ -841,6 +841,10 @@ types:
841
841
  description: Input Representation for collection of IndexConfigurations
842
842
  type: object
843
843
  properties:
844
+ correlationId:
845
+ description: correlationId
846
+ type: string
847
+ required: false
844
848
  indexConfigurations:
845
849
  description: indexConfigurations
846
850
  type: array
@@ -850,6 +854,14 @@ types:
850
854
  description: Input Representation for persisting IndexConfiguration
851
855
  type: object
852
856
  properties:
857
+ attributeDefinitionId:
858
+ description: attributeDefinitionId
859
+ type: string
860
+ required: false
861
+ attributeFieldId:
862
+ description: attributeFieldId
863
+ type: string
864
+ required: false
853
865
  isDisplayable:
854
866
  description: isDisplayable
855
867
  type: boolean
@@ -901,6 +913,14 @@ types:
901
913
  description: Details of the index configured field
902
914
  type: object
903
915
  properties:
916
+ attributeDefinitionId:
917
+ description: attributeDefinitionId
918
+ type: string
919
+ required: false
920
+ attributeFieldId:
921
+ description: attributeFieldId
922
+ type: string
923
+ required: false
904
924
  isDisplayable:
905
925
  description: IsDisplayable
906
926
  type: boolean
@@ -946,6 +966,10 @@ types:
946
966
  description: The metadata fields in an object
947
967
  type: object
948
968
  properties:
969
+ customFieldId:
970
+ description: customFieldId
971
+ type: string
972
+ required: false
949
973
  isConfigurable:
950
974
  description: isConfigurable
951
975
  type: boolean
@@ -995,6 +1019,15 @@ types:
995
1019
  correlationId:
996
1020
  type: string
997
1021
  required: false
1022
+ fieldTypes:
1023
+ type: array
1024
+ required: false
1025
+ items:
1026
+ type: string
1027
+ (oas-collectionFormat): csv
1028
+ includeMetadata:
1029
+ type: boolean
1030
+ required: false
998
1031
  put:
999
1032
  displayName: putIndexConfiguration
1000
1033
  description: Update index configurations
@@ -1004,10 +1037,6 @@ types:
1004
1037
  body:
1005
1038
  application/json:
1006
1039
  type: IndexConfigurationsUpdateOutputRepresentation
1007
- queryParameters:
1008
- correlationId:
1009
- type: string
1010
- required: false
1011
1040
  body:
1012
1041
  application/json:
1013
1042
  type: IndexConfigurationCollectionInputRepresentation