@salesforce/lds-adapters-industries-sustainability-reference-data 1.134.6 → 1.134.8
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-sustainability-reference-data.js +5 -27
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +1 -7
- package/dist/es/es2018/types/src/generated/types/SCReferenceDataOutputRepresentation.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +1 -8
- package/package.json +1 -1
- package/sfdc/index.js +6 -28
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey, StoreKeyMap } from '@luvio/engine';
|
|
7
|
+
import { serializeStructuredKey, StoreKeyMap, deepFreeze } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
|
-
const { keys: ObjectKeys
|
|
10
|
+
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
11
11
|
const { isArray: ArrayIsArray$1 } = Array;
|
|
12
12
|
/**
|
|
13
13
|
* Validates an adapter config is well-formed.
|
|
@@ -31,7 +31,7 @@ function validateConfig(config, adapter, oneOf) {
|
|
|
31
31
|
throw new TypeError(`adapter ${displayName} does not yet support ${unsupported.sort().join(', ')}`);
|
|
32
32
|
}
|
|
33
33
|
const supported = required.concat(optional);
|
|
34
|
-
if (ObjectKeys
|
|
34
|
+
if (ObjectKeys(config).some(key => !supported.includes(key))) {
|
|
35
35
|
throw new TypeError(`adapter ${displayName} configuration supports only ${supported.sort().join(', ')}`);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -43,27 +43,8 @@ function areRequiredParametersPresent(config, configPropertyNames) {
|
|
|
43
43
|
}
|
|
44
44
|
const keyPrefix = 'sustainability-reference-data';
|
|
45
45
|
|
|
46
|
-
const { freeze: ObjectFreeze, keys: ObjectKeys, create: ObjectCreate, assign: ObjectAssign } = Object;
|
|
47
46
|
const { isArray: ArrayIsArray } = Array;
|
|
48
47
|
const { stringify: JSONStringify } = JSON;
|
|
49
|
-
function deepFreeze$1(value) {
|
|
50
|
-
// No need to freeze primitives
|
|
51
|
-
if (typeof value !== 'object' || value === null) {
|
|
52
|
-
return;
|
|
53
|
-
}
|
|
54
|
-
if (ArrayIsArray(value)) {
|
|
55
|
-
for (let i = 0, len = value.length; i < len; i += 1) {
|
|
56
|
-
deepFreeze$1(value[i]);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
else {
|
|
60
|
-
const keys = ObjectKeys(value);
|
|
61
|
-
for (let i = 0, len = keys.length; i < len; i += 1) {
|
|
62
|
-
deepFreeze$1(value[keys[i]]);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
ObjectFreeze(value);
|
|
66
|
-
}
|
|
67
48
|
function createLink(ref) {
|
|
68
49
|
return {
|
|
69
50
|
__ref: serializeStructuredKey(ref),
|
|
@@ -117,9 +98,6 @@ function equals(existing, incoming) {
|
|
|
117
98
|
}
|
|
118
99
|
return true;
|
|
119
100
|
}
|
|
120
|
-
function deepFreeze(input) {
|
|
121
|
-
ObjectFreeze(input);
|
|
122
|
-
}
|
|
123
101
|
const ingest = function SCReferenceDataOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
124
102
|
if (process.env.NODE_ENV !== 'production') {
|
|
125
103
|
const validateError = validate(input);
|
|
@@ -136,7 +114,6 @@ const ingest = function SCReferenceDataOutputRepresentationIngest(input, path, l
|
|
|
136
114
|
propertyName: path.propertyName,
|
|
137
115
|
ttl: ttlToUse
|
|
138
116
|
});
|
|
139
|
-
deepFreeze(input);
|
|
140
117
|
if (existingRecord === undefined || equals(existingRecord, incomingRecord) === false) {
|
|
141
118
|
luvio.storePublish(key, incomingRecord);
|
|
142
119
|
}
|
|
@@ -183,6 +160,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
183
160
|
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
184
161
|
}
|
|
185
162
|
}
|
|
163
|
+
deepFreeze(snapshot.data);
|
|
186
164
|
return snapshot;
|
|
187
165
|
}
|
|
188
166
|
function createResourceRequest(config) {
|
|
@@ -252,7 +230,7 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
252
230
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
253
231
|
}, () => getResponseCacheKeys(luvio, resourceParams, response.body));
|
|
254
232
|
}, (response) => {
|
|
255
|
-
deepFreeze
|
|
233
|
+
deepFreeze(response);
|
|
256
234
|
throw response;
|
|
257
235
|
});
|
|
258
236
|
}
|
|
@@ -3,17 +3,11 @@ export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
|
3
3
|
declare const ObjectKeys: {
|
|
4
4
|
(o: object): string[];
|
|
5
5
|
(o: {}): string[];
|
|
6
|
-
}, ObjectFreeze: {
|
|
7
|
-
<T extends Function>(f: T): T;
|
|
8
|
-
<T_1 extends {
|
|
9
|
-
[idx: string]: object | U | null | undefined;
|
|
10
|
-
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
-
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
6
|
}, ObjectCreate: {
|
|
13
7
|
(o: object | null): any;
|
|
14
8
|
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
9
|
};
|
|
16
|
-
export {
|
|
10
|
+
export { ObjectCreate, ObjectKeys };
|
|
17
11
|
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
12
|
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
13
|
export interface AdapterValidationConfig {
|
|
@@ -15,7 +15,6 @@ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine
|
|
|
15
15
|
export declare function normalize(input: SCReferenceDataOutputRepresentation, existing: SCReferenceDataOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SCReferenceDataOutputRepresentationNormalized;
|
|
16
16
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
17
|
export declare function equals(existing: SCReferenceDataOutputRepresentationNormalized, incoming: SCReferenceDataOutputRepresentationNormalized): boolean;
|
|
18
|
-
export declare function deepFreeze(input: SCReferenceDataOutputRepresentation): void;
|
|
19
18
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
19
|
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: SCReferenceDataOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
21
20
|
/**
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const
|
|
3
|
-
<T extends Function>(f: T): T;
|
|
4
|
-
<T_1 extends {
|
|
5
|
-
[idx: string]: object | U | null | undefined;
|
|
6
|
-
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
7
|
-
<T_2>(o: T_2): Readonly<T_2>;
|
|
8
|
-
}, ObjectKeys: {
|
|
2
|
+
export declare const ObjectKeys: {
|
|
9
3
|
(o: object): string[];
|
|
10
4
|
(o: {}): string[];
|
|
11
5
|
}, ObjectCreate: {
|
|
@@ -31,7 +25,6 @@ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (i
|
|
|
31
25
|
export declare function equalsObject<U, V extends {
|
|
32
26
|
[key: string]: U;
|
|
33
27
|
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
34
|
-
export declare function deepFreeze(value: any): void;
|
|
35
28
|
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
36
29
|
__ref: string;
|
|
37
30
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-sustainability-reference-data",
|
|
3
|
-
"version": "1.134.
|
|
3
|
+
"version": "1.134.8",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Sustainability Reference Data",
|
|
6
6
|
"main": "dist/es/es2018/industries-sustainability-reference-data.js",
|
package/sfdc/index.js
CHANGED
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
*/
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
16
|
-
import { serializeStructuredKey, StoreKeyMap } from 'force/luvioEngine';
|
|
16
|
+
import { serializeStructuredKey, StoreKeyMap, deepFreeze } from 'force/luvioEngine';
|
|
17
17
|
|
|
18
18
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
19
|
-
const { keys: ObjectKeys
|
|
19
|
+
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
20
20
|
const { isArray: ArrayIsArray$1 } = Array;
|
|
21
21
|
/**
|
|
22
22
|
* Validates an adapter config is well-formed.
|
|
@@ -40,7 +40,7 @@ function validateConfig(config, adapter, oneOf) {
|
|
|
40
40
|
throw new TypeError(`adapter ${displayName} does not yet support ${unsupported.sort().join(', ')}`);
|
|
41
41
|
}
|
|
42
42
|
const supported = required.concat(optional);
|
|
43
|
-
if (ObjectKeys
|
|
43
|
+
if (ObjectKeys(config).some(key => !supported.includes(key))) {
|
|
44
44
|
throw new TypeError(`adapter ${displayName} configuration supports only ${supported.sort().join(', ')}`);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -52,27 +52,8 @@ function areRequiredParametersPresent(config, configPropertyNames) {
|
|
|
52
52
|
}
|
|
53
53
|
const keyPrefix = 'sustainability-reference-data';
|
|
54
54
|
|
|
55
|
-
const { freeze: ObjectFreeze, keys: ObjectKeys, create: ObjectCreate, assign: ObjectAssign } = Object;
|
|
56
55
|
const { isArray: ArrayIsArray } = Array;
|
|
57
56
|
const { stringify: JSONStringify } = JSON;
|
|
58
|
-
function deepFreeze$1(value) {
|
|
59
|
-
// No need to freeze primitives
|
|
60
|
-
if (typeof value !== 'object' || value === null) {
|
|
61
|
-
return;
|
|
62
|
-
}
|
|
63
|
-
if (ArrayIsArray(value)) {
|
|
64
|
-
for (let i = 0, len = value.length; i < len; i += 1) {
|
|
65
|
-
deepFreeze$1(value[i]);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
else {
|
|
69
|
-
const keys = ObjectKeys(value);
|
|
70
|
-
for (let i = 0, len = keys.length; i < len; i += 1) {
|
|
71
|
-
deepFreeze$1(value[keys[i]]);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
ObjectFreeze(value);
|
|
75
|
-
}
|
|
76
57
|
function createLink(ref) {
|
|
77
58
|
return {
|
|
78
59
|
__ref: serializeStructuredKey(ref),
|
|
@@ -126,9 +107,6 @@ function equals(existing, incoming) {
|
|
|
126
107
|
}
|
|
127
108
|
return true;
|
|
128
109
|
}
|
|
129
|
-
function deepFreeze(input) {
|
|
130
|
-
ObjectFreeze(input);
|
|
131
|
-
}
|
|
132
110
|
const ingest = function SCReferenceDataOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
133
111
|
if (process.env.NODE_ENV !== 'production') {
|
|
134
112
|
const validateError = validate(input);
|
|
@@ -145,7 +123,6 @@ const ingest = function SCReferenceDataOutputRepresentationIngest(input, path, l
|
|
|
145
123
|
propertyName: path.propertyName,
|
|
146
124
|
ttl: ttlToUse
|
|
147
125
|
});
|
|
148
|
-
deepFreeze(input);
|
|
149
126
|
if (existingRecord === undefined || equals(existingRecord, incomingRecord) === false) {
|
|
150
127
|
luvio.storePublish(key, incomingRecord);
|
|
151
128
|
}
|
|
@@ -192,6 +169,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
192
169
|
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
193
170
|
}
|
|
194
171
|
}
|
|
172
|
+
deepFreeze(snapshot.data);
|
|
195
173
|
return snapshot;
|
|
196
174
|
}
|
|
197
175
|
function createResourceRequest(config) {
|
|
@@ -261,7 +239,7 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
261
239
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
262
240
|
}, () => getResponseCacheKeys(luvio, resourceParams, response.body));
|
|
263
241
|
}, (response) => {
|
|
264
|
-
deepFreeze
|
|
242
|
+
deepFreeze(response);
|
|
265
243
|
throw response;
|
|
266
244
|
});
|
|
267
245
|
}
|
|
@@ -294,4 +272,4 @@ withDefaultLuvio((luvio) => {
|
|
|
294
272
|
});
|
|
295
273
|
|
|
296
274
|
export { uploadReferenceData };
|
|
297
|
-
// version: 1.134.
|
|
275
|
+
// version: 1.134.8-c3d6d2cfc
|