@salesforce/lds-adapters-industries-epc 1.443.0 → 1.444.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.
@@ -3711,6 +3711,13 @@ function validate$w(obj, path = 'AbstractAttributeCategoryOutputRepresentation')
3711
3711
  return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
3712
3712
  }
3713
3713
  }
3714
+ if (obj.sequence !== undefined) {
3715
+ const obj_sequence = obj.sequence;
3716
+ const path_sequence = path + '.sequence';
3717
+ if (typeof obj_sequence !== 'number' || (typeof obj_sequence === 'number' && Math.floor(obj_sequence) !== obj_sequence)) {
3718
+ return new TypeError('Expected "integer" but received "' + typeof obj_sequence + '" (at "' + path_sequence + '")');
3719
+ }
3720
+ }
3714
3721
  if (obj.type !== undefined) {
3715
3722
  const obj_type = obj.type;
3716
3723
  const path_type = path + '.type';
@@ -3,7 +3,7 @@ export declare enum DiscriminatorValues {
3
3
  AttributeCategoryOutputRepresentation = "AttributeCategoryOutputRepresentation",
4
4
  ProductClassificationAttributeCategoryOutputRepresentation = "ProductClassificationAttributeCategoryOutputRepresentation"
5
5
  }
6
- export declare const VERSION = "3a62d7a992f1092f939e291af3b52a8e";
6
+ export declare const VERSION = "1a058676831daec2244c33fc20c2887b";
7
7
  export declare function validate(obj: any, path?: string): TypeError | null;
8
8
  export declare const RepresentationType: string;
9
9
  export declare function normalize(input: AbstractAttributeCategoryOutputRepresentation, existing: AbstractAttributeCategoryOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AbstractAttributeCategoryOutputRepresentationNormalized;
@@ -26,6 +26,8 @@ export interface AbstractAttributeCategoryOutputRepresentationNormalized {
26
26
  id?: string;
27
27
  /** name */
28
28
  name?: string;
29
+ /** sequence */
30
+ sequence?: number;
29
31
  /** Type discriminator */
30
32
  type?: string;
31
33
  }
@@ -39,5 +41,6 @@ export interface AbstractAttributeCategoryOutputRepresentation {
39
41
  code?: string;
40
42
  id?: string;
41
43
  name?: string;
44
+ sequence?: number;
42
45
  type?: string;
43
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-epc",
3
- "version": "1.443.0",
3
+ "version": "1.444.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.443.0"
47
+ "@salesforce/lds-bindings": "^1.444.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@salesforce/lds-compiler-plugins": "^1.443.0",
51
- "@salesforce/lds-karma": "^1.443.0"
50
+ "@salesforce/lds-compiler-plugins": "^1.444.0",
51
+ "@salesforce/lds-karma": "^1.444.0"
52
52
  },
53
53
  "nx": {
54
54
  "targets": {
package/sfdc/index.js CHANGED
@@ -1936,6 +1936,13 @@ function validate$J(obj, path = 'AbstractAttributeCategoryOutputRepresentation')
1936
1936
  return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
1937
1937
  }
1938
1938
  }
1939
+ if (obj.sequence !== undefined) {
1940
+ const obj_sequence = obj.sequence;
1941
+ const path_sequence = path + '.sequence';
1942
+ if (typeof obj_sequence !== 'number' || (typeof obj_sequence === 'number' && Math.floor(obj_sequence) !== obj_sequence)) {
1943
+ return new TypeError('Expected "integer" but received "' + typeof obj_sequence + '" (at "' + path_sequence + '")');
1944
+ }
1945
+ }
1939
1946
  if (obj.type !== undefined) {
1940
1947
  const obj_type = obj.type;
1941
1948
  const path_type = path + '.type';
@@ -6976,4 +6983,4 @@ withDefaultLuvio((luvio) => {
6976
6983
  });
6977
6984
 
6978
6985
  export { createProductAttributeDefinition, deactivate, deploySnapshotIndex, fetchRelatedRecords, getBulkProductDetails, getConfigRuleMetadata, getConfigRuleMetadata_imperative, getContextDefinitionInfoById, getContextDefinitionInfoById_imperative, getIndexConfigurations, getIndexConfigurations_imperative, getIndexError, getIndexError_imperative, getIndexSetting, getIndexSetting_imperative, getProductAttributesByProductId, getProductAttributesByProductId_imperative, getProductById, getProductById_imperative, getProductClassificationDetails, getProductClassificationList, getProductFlowByProductId, getProductFlowByProductId_imperative, getSnapshots, getSnapshots_imperative, patchIndexSetting, pcmCatalogUpdate, updateIndexConfigurations };
6979
- // version: 1.443.0-3de9a44799
6986
+ // version: 1.444.0-86f5a57eb3
package/src/raml/api.raml CHANGED
@@ -660,6 +660,10 @@ types:
660
660
  description: name
661
661
  type: string
662
662
  required: false
663
+ sequence:
664
+ description: sequence
665
+ type: integer
666
+ required: false
663
667
  AttributeDefinitionOutputRepresentation:
664
668
  description: Attribute Definition
665
669
  discriminatorValue: AttributeDefinitionOutputRepresentation