@salesforce/lds-adapters-industries-eri 1.124.2 → 1.124.4
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-eri.js +501 -501
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/getERIDigest.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +1 -1
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +2 -2
- package/dist/{types → es/es2018/types}/src/generated/resources/postConnectEriDigest.d.ts +13 -13
- package/dist/{types → es/es2018/types}/src/generated/types/DigestNotification.d.ts +63 -63
- package/dist/{types → es/es2018/types}/src/generated/types/ERIDigestInputRepresentation.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/ERIDigestInputRepresentationWrapper.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/ERIDigestOutputRepresentation.d.ts +52 -52
- package/dist/{types → es/es2018/types}/src/generated/types/FollowingInfo.d.ts +35 -35
- package/dist/{types → es/es2018/types}/src/generated/types/FollowingInfoInputRepresentation.d.ts +41 -41
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +5 -5
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +517 -517
- package/dist/umd/es2018/industries-eri.js +0 -536
- package/dist/umd/es5/industries-eri.js +0 -541
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
-
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
-
declare const ObjectKeys: {
|
|
4
|
-
(o: object): string[];
|
|
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
|
-
}, ObjectCreate: {
|
|
13
|
-
(o: object | null): any;
|
|
14
|
-
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
-
};
|
|
16
|
-
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
-
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
-
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
-
export interface AdapterValidationConfig {
|
|
20
|
-
displayName: string;
|
|
21
|
-
parameters: {
|
|
22
|
-
required: string[];
|
|
23
|
-
optional: string[];
|
|
24
|
-
unsupported?: string[];
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Validates an adapter config is well-formed.
|
|
29
|
-
* @param config The config to validate.
|
|
30
|
-
* @param adapter The adapter validation configuration.
|
|
31
|
-
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
-
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
-
*/
|
|
34
|
-
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
-
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
-
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
-
[key in keyof Base]?: any;
|
|
38
|
-
}> = {
|
|
39
|
-
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
-
};
|
|
41
|
-
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
-
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
-
export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
|
|
44
|
-
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
-
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
-
export declare const snapshotRefreshOptions: {
|
|
47
|
-
overrides: {
|
|
48
|
-
headers: {
|
|
49
|
-
'Cache-Control': string;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
-
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
-
* JSON.stringify({a: 1, b: 2})
|
|
57
|
-
* "{"a":1,"b":2}"
|
|
58
|
-
* JSON.stringify({b: 2, a: 1})
|
|
59
|
-
* "{"b":2,"a":1}"
|
|
60
|
-
* @param data Data to be JSON-stringified.
|
|
61
|
-
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
-
*/
|
|
63
|
-
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
-
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
-
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
-
export declare const keyPrefix = "eri";
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
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
|
+
}, ObjectCreate: {
|
|
13
|
+
(o: object | null): any;
|
|
14
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
+
};
|
|
16
|
+
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
+
export interface AdapterValidationConfig {
|
|
20
|
+
displayName: string;
|
|
21
|
+
parameters: {
|
|
22
|
+
required: string[];
|
|
23
|
+
optional: string[];
|
|
24
|
+
unsupported?: string[];
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Validates an adapter config is well-formed.
|
|
29
|
+
* @param config The config to validate.
|
|
30
|
+
* @param adapter The adapter validation configuration.
|
|
31
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
+
*/
|
|
34
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
+
[key in keyof Base]?: any;
|
|
38
|
+
}> = {
|
|
39
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
+
};
|
|
41
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
+
export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
|
|
44
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
+
export declare const snapshotRefreshOptions: {
|
|
47
|
+
overrides: {
|
|
48
|
+
headers: {
|
|
49
|
+
'Cache-Control': string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
+
* JSON.stringify({a: 1, b: 2})
|
|
57
|
+
* "{"a":1,"b":2}"
|
|
58
|
+
* JSON.stringify({b: 2, a: 1})
|
|
59
|
+
* "{"b":2,"a":1}"
|
|
60
|
+
* @param data Data to be JSON-stringified.
|
|
61
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
+
*/
|
|
63
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
+
export declare const keyPrefix = "eri";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ERIDigestInputRepresentation as types_ERIDigestInputRepresentation_ERIDigestInputRepresentation } from '../types/ERIDigestInputRepresentation';
|
|
3
|
-
import { ResourceRequestConfig as resources_postConnectEriDigest_ResourceRequestConfig } from '../resources/postConnectEriDigest';
|
|
4
|
-
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
5
|
-
import { ERIDigestOutputRepresentation as types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation } from '../types/ERIDigestOutputRepresentation';
|
|
6
|
-
export declare const adapterName = "getERIDigest";
|
|
7
|
-
export declare const getERIDigest_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
-
export interface GetERIDigestConfig {
|
|
9
|
-
eriDigestInput: types_ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
10
|
-
}
|
|
11
|
-
export declare function createResourceParams(config: GetERIDigestConfig): resources_postConnectEriDigest_ResourceRequestConfig;
|
|
12
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetERIDigestConfig>): adapter$45$utils_Untrusted<GetERIDigestConfig>;
|
|
13
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetERIDigestConfig | null;
|
|
14
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetERIDigestConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, any>>;
|
|
15
|
-
export declare const getERIDigestAdapterFactory: $64$luvio_engine_AdapterFactory<GetERIDigestConfig, types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ERIDigestInputRepresentation as types_ERIDigestInputRepresentation_ERIDigestInputRepresentation } from '../types/ERIDigestInputRepresentation';
|
|
3
|
+
import { ResourceRequestConfig as resources_postConnectEriDigest_ResourceRequestConfig } from '../resources/postConnectEriDigest';
|
|
4
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
5
|
+
import { ERIDigestOutputRepresentation as types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation } from '../types/ERIDigestOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "getERIDigest";
|
|
7
|
+
export declare const getERIDigest_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetERIDigestConfig {
|
|
9
|
+
eriDigestInput: types_ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: GetERIDigestConfig): resources_postConnectEriDigest_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetERIDigestConfig>): adapter$45$utils_Untrusted<GetERIDigestConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetERIDigestConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetERIDigestConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, any>>;
|
|
15
|
+
export declare const getERIDigestAdapterFactory: $64$luvio_engine_AdapterFactory<GetERIDigestConfig, types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { getERIDigestAdapterFactory } from '../adapters/getERIDigest';
|
|
1
|
+
export { getERIDigestAdapterFactory } from '../adapters/getERIDigest';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare let getERIDigest: any;
|
|
2
|
-
export { getERIDigest, };
|
|
1
|
+
declare let getERIDigest: any;
|
|
2
|
+
export { getERIDigest, };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ERIDigestInputRepresentation as types_ERIDigestInputRepresentation_ERIDigestInputRepresentation } from '../types/ERIDigestInputRepresentation';
|
|
2
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
3
|
-
import { ERIDigestOutputRepresentation as types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation } from '../types/ERIDigestOutputRepresentation';
|
|
4
|
-
export interface ResourceRequestConfig {
|
|
5
|
-
body: {
|
|
6
|
-
eriDigestInput: types_ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, any>;
|
|
12
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
-
export default createResourceRequest;
|
|
1
|
+
import { ERIDigestInputRepresentation as types_ERIDigestInputRepresentation_ERIDigestInputRepresentation } from '../types/ERIDigestInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
3
|
+
import { ERIDigestOutputRepresentation as types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation } from '../types/ERIDigestOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
eriDigestInput: types_ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ERIDigestOutputRepresentation_ERIDigestOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "1b195c1743c167f786cfce25b5d46f7b";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: DigestNotification, existing: DigestNotificationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DigestNotificationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
7
|
-
export declare function equals(existing: DigestNotificationNormalized, incoming: DigestNotificationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: DigestNotification): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: DigestNotification, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Digest notification
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface DigestNotificationNormalized {
|
|
18
|
-
/** Display fields in the notification */
|
|
19
|
-
fields: Array<{
|
|
20
|
-
[key: string]: string;
|
|
21
|
-
}>;
|
|
22
|
-
/** Unique id of the notification in the digest */
|
|
23
|
-
id: string;
|
|
24
|
-
/** Record Name referenced in this notification */
|
|
25
|
-
name: string;
|
|
26
|
-
/** Navigation Url */
|
|
27
|
-
navigationLink: string;
|
|
28
|
-
/** true if the notification is read by the user */
|
|
29
|
-
read?: boolean;
|
|
30
|
-
/** Record id referenced in this notification */
|
|
31
|
-
recordId: string;
|
|
32
|
-
/** Record id type referenced in this notification */
|
|
33
|
-
recordTypeId?: string;
|
|
34
|
-
/** Sobject Type of the record referenced in this notification */
|
|
35
|
-
sobjectType: string;
|
|
36
|
-
/** Sobject type label of the record referenced in this notification */
|
|
37
|
-
sobjectTypeLabel: string;
|
|
38
|
-
/** Time when this relationship is found */
|
|
39
|
-
timeStamp: string;
|
|
40
|
-
/** Notificatio type */
|
|
41
|
-
type: string;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Digest notification
|
|
45
|
-
*
|
|
46
|
-
* Keys:
|
|
47
|
-
* (none)
|
|
48
|
-
*/
|
|
49
|
-
export interface DigestNotification {
|
|
50
|
-
fields: Array<{
|
|
51
|
-
[key: string]: string;
|
|
52
|
-
}>;
|
|
53
|
-
id: string;
|
|
54
|
-
name: string;
|
|
55
|
-
navigationLink: string;
|
|
56
|
-
read?: boolean;
|
|
57
|
-
recordId: string;
|
|
58
|
-
recordTypeId?: string;
|
|
59
|
-
sobjectType: string;
|
|
60
|
-
sobjectTypeLabel: string;
|
|
61
|
-
timeStamp: string;
|
|
62
|
-
type: string;
|
|
63
|
-
}
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "1b195c1743c167f786cfce25b5d46f7b";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DigestNotification, existing: DigestNotificationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DigestNotificationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
7
|
+
export declare function equals(existing: DigestNotificationNormalized, incoming: DigestNotificationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: DigestNotification): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: DigestNotification, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Digest notification
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface DigestNotificationNormalized {
|
|
18
|
+
/** Display fields in the notification */
|
|
19
|
+
fields: Array<{
|
|
20
|
+
[key: string]: string;
|
|
21
|
+
}>;
|
|
22
|
+
/** Unique id of the notification in the digest */
|
|
23
|
+
id: string;
|
|
24
|
+
/** Record Name referenced in this notification */
|
|
25
|
+
name: string;
|
|
26
|
+
/** Navigation Url */
|
|
27
|
+
navigationLink: string;
|
|
28
|
+
/** true if the notification is read by the user */
|
|
29
|
+
read?: boolean;
|
|
30
|
+
/** Record id referenced in this notification */
|
|
31
|
+
recordId: string;
|
|
32
|
+
/** Record id type referenced in this notification */
|
|
33
|
+
recordTypeId?: string;
|
|
34
|
+
/** Sobject Type of the record referenced in this notification */
|
|
35
|
+
sobjectType: string;
|
|
36
|
+
/** Sobject type label of the record referenced in this notification */
|
|
37
|
+
sobjectTypeLabel: string;
|
|
38
|
+
/** Time when this relationship is found */
|
|
39
|
+
timeStamp: string;
|
|
40
|
+
/** Notificatio type */
|
|
41
|
+
type: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Digest notification
|
|
45
|
+
*
|
|
46
|
+
* Keys:
|
|
47
|
+
* (none)
|
|
48
|
+
*/
|
|
49
|
+
export interface DigestNotification {
|
|
50
|
+
fields: Array<{
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
}>;
|
|
53
|
+
id: string;
|
|
54
|
+
name: string;
|
|
55
|
+
navigationLink: string;
|
|
56
|
+
read?: boolean;
|
|
57
|
+
recordId: string;
|
|
58
|
+
recordTypeId?: string;
|
|
59
|
+
sobjectType: string;
|
|
60
|
+
sobjectTypeLabel: string;
|
|
61
|
+
timeStamp: string;
|
|
62
|
+
type: string;
|
|
63
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ERIDigestInputRepresentation.d.ts
RENAMED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { FollowingInfoInputRepresentation as FollowingInfoInputRepresentation_FollowingInfoInputRepresentation } from './FollowingInfoInputRepresentation';
|
|
2
|
-
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "4dbcf2a95858fb64733c314aec8b2401";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: ERIDigestInputRepresentation, existing: ERIDigestInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ERIDigestInputRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: ERIDigestInputRepresentationNormalized, incoming: ERIDigestInputRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: ERIDigestInputRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ERIDigestInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* An Input Representation for ERI digest
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface ERIDigestInputRepresentationNormalized {
|
|
19
|
-
/** following input */
|
|
20
|
-
following: FollowingInfoInputRepresentation_FollowingInfoInputRepresentation;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* An Input Representation for ERI digest
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* (none)
|
|
27
|
-
*/
|
|
28
|
-
export interface ERIDigestInputRepresentation {
|
|
29
|
-
following: FollowingInfoInputRepresentation_FollowingInfoInputRepresentation;
|
|
30
|
-
}
|
|
1
|
+
import { FollowingInfoInputRepresentation as FollowingInfoInputRepresentation_FollowingInfoInputRepresentation } from './FollowingInfoInputRepresentation';
|
|
2
|
+
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "4dbcf2a95858fb64733c314aec8b2401";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ERIDigestInputRepresentation, existing: ERIDigestInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ERIDigestInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ERIDigestInputRepresentationNormalized, incoming: ERIDigestInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ERIDigestInputRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ERIDigestInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* An Input Representation for ERI digest
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ERIDigestInputRepresentationNormalized {
|
|
19
|
+
/** following input */
|
|
20
|
+
following: FollowingInfoInputRepresentation_FollowingInfoInputRepresentation;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* An Input Representation for ERI digest
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ERIDigestInputRepresentation {
|
|
29
|
+
following: FollowingInfoInputRepresentation_FollowingInfoInputRepresentation;
|
|
30
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ERIDigestInputRepresentationWrapper.d.ts
RENAMED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { ERIDigestInputRepresentation as ERIDigestInputRepresentation_ERIDigestInputRepresentation } from './ERIDigestInputRepresentation';
|
|
2
|
-
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "2960a9bd8b7f9a2434287718b36a3c8f";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: ERIDigestInputRepresentationWrapper, existing: ERIDigestInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ERIDigestInputRepresentationWrapperNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: ERIDigestInputRepresentationWrapperNormalized, incoming: ERIDigestInputRepresentationWrapperNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: ERIDigestInputRepresentationWrapper): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ERIDigestInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Wrapper for ERI digest input representation
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface ERIDigestInputRepresentationWrapperNormalized {
|
|
19
|
-
/** ERI Digest input represenation */
|
|
20
|
-
eriDigestInput: ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* Wrapper for ERI digest input representation
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* (none)
|
|
27
|
-
*/
|
|
28
|
-
export interface ERIDigestInputRepresentationWrapper {
|
|
29
|
-
eriDigestInput: ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
30
|
-
}
|
|
1
|
+
import { ERIDigestInputRepresentation as ERIDigestInputRepresentation_ERIDigestInputRepresentation } from './ERIDigestInputRepresentation';
|
|
2
|
+
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "2960a9bd8b7f9a2434287718b36a3c8f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ERIDigestInputRepresentationWrapper, existing: ERIDigestInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ERIDigestInputRepresentationWrapperNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ERIDigestInputRepresentationWrapperNormalized, incoming: ERIDigestInputRepresentationWrapperNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ERIDigestInputRepresentationWrapper): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ERIDigestInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper for ERI digest input representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ERIDigestInputRepresentationWrapperNormalized {
|
|
19
|
+
/** ERI Digest input represenation */
|
|
20
|
+
eriDigestInput: ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Wrapper for ERI digest input representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ERIDigestInputRepresentationWrapper {
|
|
29
|
+
eriDigestInput: ERIDigestInputRepresentation_ERIDigestInputRepresentation;
|
|
30
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ERIDigestOutputRepresentation.d.ts
RENAMED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
import { FollowingInfo as FollowingInfo_FollowingInfo } from './FollowingInfo';
|
|
2
|
-
import { DigestNotification as DigestNotification_DigestNotification } from './DigestNotification';
|
|
3
|
-
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
-
export declare const TTL = 1000;
|
|
5
|
-
export declare const VERSION = "954674f4e56dd5b956cf98542401fda9";
|
|
6
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
|
-
export declare const RepresentationType: string;
|
|
8
|
-
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
9
|
-
isSuccess: boolean;
|
|
10
|
-
}
|
|
11
|
-
export type ERIDigestOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
-
export type PartialERIDigestOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
14
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ERIDigestOutputRepresentationNormalizedKeyMetadata;
|
|
15
|
-
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ERIDigestOutputRepresentation): string;
|
|
16
|
-
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ERIDigestOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
-
export declare function normalize(input: ERIDigestOutputRepresentation, existing: ERIDigestOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ERIDigestOutputRepresentationNormalized;
|
|
18
|
-
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
19
|
-
export declare function equals(existing: ERIDigestOutputRepresentationNormalized, incoming: ERIDigestOutputRepresentationNormalized): boolean;
|
|
20
|
-
export declare function deepFreeze(input: ERIDigestOutputRepresentation): void;
|
|
21
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
22
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ERIDigestOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
23
|
-
/**
|
|
24
|
-
* Output representation of a ERI Digest
|
|
25
|
-
*
|
|
26
|
-
* Keys:
|
|
27
|
-
* isSuccess (boolean): requestSucceeded
|
|
28
|
-
*/
|
|
29
|
-
export interface ERIDigestOutputRepresentationNormalized {
|
|
30
|
-
/** Error message */
|
|
31
|
-
errorMsg?: string;
|
|
32
|
-
following?: FollowingInfo_FollowingInfo;
|
|
33
|
-
/** Notifications list */
|
|
34
|
-
notifications?: Array<$64$luvio_engine_StoreLink>;
|
|
35
|
-
/** true if request is succeeded else false */
|
|
36
|
-
requestSucceeded: boolean;
|
|
37
|
-
/** Status code */
|
|
38
|
-
statusCode: string;
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Output representation of a ERI Digest
|
|
42
|
-
*
|
|
43
|
-
* Keys:
|
|
44
|
-
* isSuccess (boolean): requestSucceeded
|
|
45
|
-
*/
|
|
46
|
-
export interface ERIDigestOutputRepresentation {
|
|
47
|
-
errorMsg?: string;
|
|
48
|
-
following?: FollowingInfo_FollowingInfo;
|
|
49
|
-
notifications?: Array<DigestNotification_DigestNotification>;
|
|
50
|
-
requestSucceeded: boolean;
|
|
51
|
-
statusCode: string;
|
|
52
|
-
}
|
|
1
|
+
import { FollowingInfo as FollowingInfo_FollowingInfo } from './FollowingInfo';
|
|
2
|
+
import { DigestNotification as DigestNotification_DigestNotification } from './DigestNotification';
|
|
3
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
+
export declare const TTL = 1000;
|
|
5
|
+
export declare const VERSION = "954674f4e56dd5b956cf98542401fda9";
|
|
6
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
|
+
export declare const RepresentationType: string;
|
|
8
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
9
|
+
isSuccess: boolean;
|
|
10
|
+
}
|
|
11
|
+
export type ERIDigestOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export type PartialERIDigestOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ERIDigestOutputRepresentationNormalizedKeyMetadata;
|
|
15
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ERIDigestOutputRepresentation): string;
|
|
16
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ERIDigestOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
+
export declare function normalize(input: ERIDigestOutputRepresentation, existing: ERIDigestOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ERIDigestOutputRepresentationNormalized;
|
|
18
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
19
|
+
export declare function equals(existing: ERIDigestOutputRepresentationNormalized, incoming: ERIDigestOutputRepresentationNormalized): boolean;
|
|
20
|
+
export declare function deepFreeze(input: ERIDigestOutputRepresentation): void;
|
|
21
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
22
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ERIDigestOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
23
|
+
/**
|
|
24
|
+
* Output representation of a ERI Digest
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* isSuccess (boolean): requestSucceeded
|
|
28
|
+
*/
|
|
29
|
+
export interface ERIDigestOutputRepresentationNormalized {
|
|
30
|
+
/** Error message */
|
|
31
|
+
errorMsg?: string;
|
|
32
|
+
following?: FollowingInfo_FollowingInfo;
|
|
33
|
+
/** Notifications list */
|
|
34
|
+
notifications?: Array<$64$luvio_engine_StoreLink>;
|
|
35
|
+
/** true if request is succeeded else false */
|
|
36
|
+
requestSucceeded: boolean;
|
|
37
|
+
/** Status code */
|
|
38
|
+
statusCode: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Output representation of a ERI Digest
|
|
42
|
+
*
|
|
43
|
+
* Keys:
|
|
44
|
+
* isSuccess (boolean): requestSucceeded
|
|
45
|
+
*/
|
|
46
|
+
export interface ERIDigestOutputRepresentation {
|
|
47
|
+
errorMsg?: string;
|
|
48
|
+
following?: FollowingInfo_FollowingInfo;
|
|
49
|
+
notifications?: Array<DigestNotification_DigestNotification>;
|
|
50
|
+
requestSucceeded: boolean;
|
|
51
|
+
statusCode: string;
|
|
52
|
+
}
|