@salesforce/lds-adapters-community-microbatching 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/community-microbatching.js +4 -21
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +1 -7
- package/dist/es/es2018/types/src/generated/types/MicrobatchingIngestionInputRepresentation.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/MicrobatchingIngestionInputWrapperRepresentation.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/MicrobatchingIngestionOutputRepresentation.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/MicrobatchingIngestionRequestBodyInputRepresentation.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 +5 -22
|
@@ -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$1,
|
|
10
|
+
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
11
11
|
const { isArray: ArrayIsArray$1 } = Array;
|
|
12
12
|
/**
|
|
13
13
|
* Validates an adapter config is well-formed.
|
|
@@ -43,26 +43,8 @@ function areRequiredParametersPresent(config, configPropertyNames) {
|
|
|
43
43
|
}
|
|
44
44
|
const keyPrefix = 'microbatching';
|
|
45
45
|
|
|
46
|
-
const {
|
|
46
|
+
const { keys: ObjectKeys, create: ObjectCreate, assign: ObjectAssign } = Object;
|
|
47
47
|
const { isArray: ArrayIsArray } = Array;
|
|
48
|
-
function deepFreeze(value) {
|
|
49
|
-
// No need to freeze primitives
|
|
50
|
-
if (typeof value !== 'object' || value === null) {
|
|
51
|
-
return;
|
|
52
|
-
}
|
|
53
|
-
if (ArrayIsArray(value)) {
|
|
54
|
-
for (let i = 0, len = value.length; i < len; i += 1) {
|
|
55
|
-
deepFreeze(value[i]);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
else {
|
|
59
|
-
const keys = ObjectKeys(value);
|
|
60
|
-
for (let i = 0, len = keys.length; i < len; i += 1) {
|
|
61
|
-
deepFreeze(value[keys[i]]);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
ObjectFreeze(value);
|
|
65
|
-
}
|
|
66
48
|
function createLink(ref) {
|
|
67
49
|
return {
|
|
68
50
|
__ref: serializeStructuredKey(ref),
|
|
@@ -222,6 +204,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
222
204
|
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
223
205
|
}
|
|
224
206
|
}
|
|
207
|
+
deepFreeze(snapshot.data);
|
|
225
208
|
return snapshot;
|
|
226
209
|
}
|
|
227
210
|
function createResourceRequest(config) {
|
|
@@ -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 {
|
package/dist/es/es2018/types/src/generated/types/MicrobatchingIngestionInputRepresentation.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export declare const RepresentationType: string;
|
|
|
5
5
|
export declare function normalize(input: MicrobatchingIngestionInputRepresentation, existing: MicrobatchingIngestionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): MicrobatchingIngestionInputRepresentationNormalized;
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: MicrobatchingIngestionInputRepresentationNormalized, incoming: MicrobatchingIngestionInputRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: MicrobatchingIngestionInputRepresentation): void;
|
|
9
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
9
|
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: MicrobatchingIngestionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
10
|
/**
|
|
@@ -6,7 +6,6 @@ export declare const RepresentationType: string;
|
|
|
6
6
|
export declare function normalize(input: MicrobatchingIngestionInputWrapperRepresentation, existing: MicrobatchingIngestionInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): MicrobatchingIngestionInputWrapperRepresentationNormalized;
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: MicrobatchingIngestionInputWrapperRepresentationNormalized, incoming: MicrobatchingIngestionInputWrapperRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: MicrobatchingIngestionInputWrapperRepresentation): void;
|
|
10
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
10
|
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: MicrobatchingIngestionInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
11
|
/**
|
package/dist/es/es2018/types/src/generated/types/MicrobatchingIngestionOutputRepresentation.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine
|
|
|
15
15
|
export declare function normalize(input: MicrobatchingIngestionOutputRepresentation, existing: MicrobatchingIngestionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): MicrobatchingIngestionOutputRepresentationNormalized;
|
|
16
16
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
17
|
export declare function equals(existing: MicrobatchingIngestionOutputRepresentationNormalized, incoming: MicrobatchingIngestionOutputRepresentationNormalized): boolean;
|
|
18
|
-
export declare function deepFreeze(input: MicrobatchingIngestionOutputRepresentation): void;
|
|
19
18
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
19
|
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: MicrobatchingIngestionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
21
20
|
/**
|
|
@@ -5,7 +5,6 @@ export declare const RepresentationType: string;
|
|
|
5
5
|
export declare function normalize(input: MicrobatchingIngestionRequestBodyInputRepresentation, existing: MicrobatchingIngestionRequestBodyInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): MicrobatchingIngestionRequestBodyInputRepresentationNormalized;
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: MicrobatchingIngestionRequestBodyInputRepresentationNormalized, incoming: MicrobatchingIngestionRequestBodyInputRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: MicrobatchingIngestionRequestBodyInputRepresentation): void;
|
|
9
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
9
|
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: MicrobatchingIngestionRequestBodyInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
10
|
/**
|
|
@@ -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
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$1,
|
|
19
|
+
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
20
20
|
const { isArray: ArrayIsArray$1 } = Array;
|
|
21
21
|
/**
|
|
22
22
|
* Validates an adapter config is well-formed.
|
|
@@ -52,26 +52,8 @@ function areRequiredParametersPresent(config, configPropertyNames) {
|
|
|
52
52
|
}
|
|
53
53
|
const keyPrefix = 'microbatching';
|
|
54
54
|
|
|
55
|
-
const {
|
|
55
|
+
const { keys: ObjectKeys, create: ObjectCreate, assign: ObjectAssign } = Object;
|
|
56
56
|
const { isArray: ArrayIsArray } = Array;
|
|
57
|
-
function deepFreeze(value) {
|
|
58
|
-
// No need to freeze primitives
|
|
59
|
-
if (typeof value !== 'object' || value === null) {
|
|
60
|
-
return;
|
|
61
|
-
}
|
|
62
|
-
if (ArrayIsArray(value)) {
|
|
63
|
-
for (let i = 0, len = value.length; i < len; i += 1) {
|
|
64
|
-
deepFreeze(value[i]);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
else {
|
|
68
|
-
const keys = ObjectKeys(value);
|
|
69
|
-
for (let i = 0, len = keys.length; i < len; i += 1) {
|
|
70
|
-
deepFreeze(value[keys[i]]);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
ObjectFreeze(value);
|
|
74
|
-
}
|
|
75
57
|
function createLink(ref) {
|
|
76
58
|
return {
|
|
77
59
|
__ref: serializeStructuredKey(ref),
|
|
@@ -231,6 +213,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
231
213
|
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
232
214
|
}
|
|
233
215
|
}
|
|
216
|
+
deepFreeze(snapshot.data);
|
|
234
217
|
return snapshot;
|
|
235
218
|
}
|
|
236
219
|
function createResourceRequest(config) {
|
|
@@ -334,4 +317,4 @@ withDefaultLuvio((luvio) => {
|
|
|
334
317
|
});
|
|
335
318
|
|
|
336
319
|
export { ingestRecord };
|
|
337
|
-
// version: 1.134.
|
|
320
|
+
// version: 1.134.8-c3d6d2cfc
|