@salesforce/lds-adapters-industries-claim 1.398.0 → 1.400.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.
- package/dist/es/es2018/industries-claim.js +1 -0
- package/dist/es/es2018/types/src/generated/adapters/UpdateClaim.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectClaimsByClaimId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/ClaimInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +2 -1
- package/src/raml/api.raml +4 -0
|
@@ -728,6 +728,7 @@ const UpdateClaim_ConfigPropertyMetadata = [
|
|
|
728
728
|
generateParamConfigMetadata('accountId', false, 2 /* Body */, 0 /* String */),
|
|
729
729
|
generateParamConfigMetadata('additionalFields', false, 2 /* Body */, 4 /* Unsupported */),
|
|
730
730
|
generateParamConfigMetadata('attributes', false, 2 /* Body */, 4 /* Unsupported */),
|
|
731
|
+
generateParamConfigMetadata('claimLossDate', false, 2 /* Body */, 0 /* String */),
|
|
731
732
|
generateParamConfigMetadata('claimReason', false, 2 /* Body */, 0 /* String */),
|
|
732
733
|
generateParamConfigMetadata('claimReasonType', false, 2 /* Body */, 0 /* String */),
|
|
733
734
|
generateParamConfigMetadata('claimType', false, 2 /* Body */, 0 /* String */),
|
|
@@ -11,6 +11,7 @@ export interface ResourceRequestConfig {
|
|
|
11
11
|
accountId?: string;
|
|
12
12
|
additionalFields?: unknown;
|
|
13
13
|
attributes?: types_ClaimAttributesInput_ClaimAttributesInput;
|
|
14
|
+
claimLossDate?: string;
|
|
14
15
|
claimReason?: string;
|
|
15
16
|
claimReasonType?: string;
|
|
16
17
|
claimType?: string;
|
|
@@ -2,7 +2,7 @@ import { ClaimAttributesInput as ClaimAttributesInput_ClaimAttributesInput } fro
|
|
|
2
2
|
import { ClaimItemsInput as ClaimItemsInput_ClaimItemsInput } from './ClaimItemsInput';
|
|
3
3
|
import { ClaimParticipantsInput as ClaimParticipantsInput_ClaimParticipantsInput } from './ClaimParticipantsInput';
|
|
4
4
|
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';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "dec9f6681c1a37aef5b7126045bece43";
|
|
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: ClaimInputRepresentation, existing: ClaimInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ClaimInputRepresentationNormalized;
|
|
@@ -23,6 +23,8 @@ export interface ClaimInputRepresentationNormalized {
|
|
|
23
23
|
additionalFields?: unknown;
|
|
24
24
|
/** The attributes of the claim product */
|
|
25
25
|
attributes?: ClaimAttributesInput_ClaimAttributesInput;
|
|
26
|
+
/** The claim loss date */
|
|
27
|
+
claimLossDate?: string;
|
|
26
28
|
/** Reason for claim */
|
|
27
29
|
claimReason?: string;
|
|
28
30
|
/** Claim reason type */
|
|
@@ -56,6 +58,7 @@ export interface ClaimInputRepresentation {
|
|
|
56
58
|
accountId?: string;
|
|
57
59
|
additionalFields?: unknown;
|
|
58
60
|
attributes?: ClaimAttributesInput_ClaimAttributesInput;
|
|
61
|
+
claimLossDate?: string;
|
|
59
62
|
claimReason?: string;
|
|
60
63
|
claimReasonType?: string;
|
|
61
64
|
claimType?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-claim",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.400.0",
|
|
4
4
|
"description": "Family for Claim related APIs",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-claim.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.400.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.400.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -946,6 +946,7 @@ const UpdateClaim_ConfigPropertyMetadata = [
|
|
|
946
946
|
generateParamConfigMetadata('accountId', false, 2 /* Body */, 0 /* String */),
|
|
947
947
|
generateParamConfigMetadata('additionalFields', false, 2 /* Body */, 4 /* Unsupported */),
|
|
948
948
|
generateParamConfigMetadata('attributes', false, 2 /* Body */, 4 /* Unsupported */),
|
|
949
|
+
generateParamConfigMetadata('claimLossDate', false, 2 /* Body */, 0 /* String */),
|
|
949
950
|
generateParamConfigMetadata('claimReason', false, 2 /* Body */, 0 /* String */),
|
|
950
951
|
generateParamConfigMetadata('claimReasonType', false, 2 /* Body */, 0 /* String */),
|
|
951
952
|
generateParamConfigMetadata('claimType', false, 2 /* Body */, 0 /* String */),
|
|
@@ -1146,4 +1147,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1146
1147
|
});
|
|
1147
1148
|
|
|
1148
1149
|
export { CreateClaimCoverage, UpdateClaim, UpdateClaimCoverage };
|
|
1149
|
-
// version: 1.
|
|
1150
|
+
// version: 1.400.0-3c7514a502
|
package/src/raml/api.raml
CHANGED
|
@@ -91,6 +91,10 @@ types:
|
|
|
91
91
|
description: The attributes of the claim product
|
|
92
92
|
type: ClaimAttributesInput
|
|
93
93
|
required: false
|
|
94
|
+
claimLossDate:
|
|
95
|
+
description: The claim loss date
|
|
96
|
+
type: string
|
|
97
|
+
required: false
|
|
94
98
|
claimReason:
|
|
95
99
|
description: Reason for claim
|
|
96
100
|
type: string
|