@salesforce/lds-adapters-industries-insuranceclaim 1.428.0-dev5 → 1.428.0-dev6

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.
@@ -1601,16 +1601,16 @@ function validate$4(obj, path = 'RecordIdsInput') {
1601
1601
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
1602
1602
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
1603
1603
  }
1604
- const obj_ids = obj.ids;
1605
- const path_ids = path + '.ids';
1606
- if (!ArrayIsArray(obj_ids)) {
1607
- return new TypeError('Expected "array" but received "' + typeof obj_ids + '" (at "' + path_ids + '")');
1608
- }
1609
- for (let i = 0; i < obj_ids.length; i++) {
1610
- const obj_ids_item = obj_ids[i];
1611
- const path_ids_item = path_ids + '[' + i + ']';
1612
- if (typeof obj_ids_item !== 'string') {
1613
- return new TypeError('Expected "string" but received "' + typeof obj_ids_item + '" (at "' + path_ids_item + '")');
1604
+ const obj_list = obj.list;
1605
+ const path_list = path + '.list';
1606
+ if (!ArrayIsArray(obj_list)) {
1607
+ return new TypeError('Expected "array" but received "' + typeof obj_list + '" (at "' + path_list + '")');
1608
+ }
1609
+ for (let i = 0; i < obj_list.length; i++) {
1610
+ const obj_list_item = obj_list[i];
1611
+ const path_list_item = path_list + '[' + i + ']';
1612
+ if (typeof obj_list_item !== 'string') {
1613
+ return new TypeError('Expected "string" but received "' + typeof obj_list_item + '" (at "' + path_list_item + '")');
1614
1614
  }
1615
1615
  }
1616
1616
  })();
@@ -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 = "eb82b24762a8734ac660451745131bd5";
2
+ export declare const VERSION = "d632f71064ae50df2bcf74fa0673a213";
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: RecordIdsInput, existing: RecordIdsInputNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecordIdsInputNormalized;
@@ -15,7 +15,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
15
15
  */
16
16
  export interface RecordIdsInputNormalized {
17
17
  /** List of record IDs */
18
- ids: Array<string>;
18
+ list: Array<string>;
19
19
  }
20
20
  /**
21
21
  * Input representation containing a list of record IDs
@@ -24,5 +24,5 @@ export interface RecordIdsInputNormalized {
24
24
  * (none)
25
25
  */
26
26
  export interface RecordIdsInput {
27
- ids: Array<string>;
27
+ list: Array<string>;
28
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-insuranceclaim",
3
- "version": "1.428.0-dev5",
3
+ "version": "1.428.0-dev6",
4
4
  "description": "APIs for Insurance Claims",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/industries-insuranceclaim.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.428.0-dev5"
43
+ "@salesforce/lds-bindings": "^1.428.0-dev6"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.428.0-dev5"
46
+ "@salesforce/lds-compiler-plugins": "^1.428.0-dev6"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -86,16 +86,16 @@ function validate$e(obj, path = 'RecordIdsInput') {
86
86
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
87
87
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
88
88
  }
89
- const obj_ids = obj.ids;
90
- const path_ids = path + '.ids';
91
- if (!ArrayIsArray(obj_ids)) {
92
- return new TypeError('Expected "array" but received "' + typeof obj_ids + '" (at "' + path_ids + '")');
89
+ const obj_list = obj.list;
90
+ const path_list = path + '.list';
91
+ if (!ArrayIsArray(obj_list)) {
92
+ return new TypeError('Expected "array" but received "' + typeof obj_list + '" (at "' + path_list + '")');
93
93
  }
94
- for (let i = 0; i < obj_ids.length; i++) {
95
- const obj_ids_item = obj_ids[i];
96
- const path_ids_item = path_ids + '[' + i + ']';
97
- if (typeof obj_ids_item !== 'string') {
98
- return new TypeError('Expected "string" but received "' + typeof obj_ids_item + '" (at "' + path_ids_item + '")');
94
+ for (let i = 0; i < obj_list.length; i++) {
95
+ const obj_list_item = obj_list[i];
96
+ const path_list_item = path_list + '[' + i + ']';
97
+ if (typeof obj_list_item !== 'string') {
98
+ return new TypeError('Expected "string" but received "' + typeof obj_list_item + '" (at "' + path_list_item + '")');
99
99
  }
100
100
  }
101
101
  })();
@@ -2407,4 +2407,4 @@ withDefaultLuvio((luvio) => {
2407
2407
  });
2408
2408
 
2409
2409
  export { BulkPayClaimCoveragePaymentDetail, CalculateAdjustments, CancelClaimCoveragePaymentDetail, CreateClaimCoveragePaymentDetail, DeleteClaimCoveragePaymentDetail, EditClaimCoveragePaymentDetail, PayClaimCoveragePaymentDetail, PayExGratiaClaimCvrPaymentDetail, PolicyLimitStandingCalculation, postVerifyPolicyCoverage };
2410
- // version: 1.428.0-dev5-c6fe0903b6
2410
+ // version: 1.428.0-dev6-f96161ab92
package/src/raml/api.raml CHANGED
@@ -623,7 +623,7 @@ types:
623
623
  description: Input representation containing a list of record IDs
624
624
  type: object
625
625
  properties:
626
- ids:
626
+ list:
627
627
  description: List of record IDs
628
628
  type: array
629
629
  items: