@salesforce/lds-runtime-mobile 1.405.0 → 1.410.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.
|
@@ -20,7 +20,7 @@ export interface RecordInputRepresentationNormalized {
|
|
|
20
20
|
apiName?: string;
|
|
21
21
|
/** Field values. When this representation is deserialized from JSON, the values will be typed as JsonNode, delaying full deserialization until the resource executes, which knows the expected data types. In the case of invocation through CiJ directly, the field values should be typed as the expected data types. */
|
|
22
22
|
fields: {
|
|
23
|
-
[key: string]: string | number | null | boolean;
|
|
23
|
+
[key: string]: string | number | null | boolean | string[];
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
@@ -33,6 +33,6 @@ export interface RecordInputRepresentation {
|
|
|
33
33
|
allowSaveOnDuplicate?: boolean;
|
|
34
34
|
apiName?: string;
|
|
35
35
|
fields: {
|
|
36
|
-
[key: string]: string | number | null | boolean;
|
|
36
|
+
[key: string]: string | number | null | boolean | string[];
|
|
37
37
|
};
|
|
38
38
|
}
|