@salesforce/lds-adapters-industries-sustainability-reference-data-v2 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.
Files changed (22) hide show
  1. package/dist/es/es2018/industries-sustainability-reference-data-v2.js +714 -714
  2. package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
  3. package/dist/{types → es/es2018/types}/src/generated/adapters/getEntityVersion.d.ts +30 -30
  4. package/dist/{types → es/es2018/types}/src/generated/adapters/uploadEntityVersion.d.ts +15 -15
  5. package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +2 -2
  6. package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +4 -4
  7. package/dist/{types → es/es2018/types}/src/generated/resources/getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource.d.ts +21 -21
  8. package/dist/{types → es/es2018/types}/src/generated/resources/putConnectSustainabilityReferenceDataV2EntityVersionUpload.d.ts +13 -13
  9. package/dist/{types → es/es2018/types}/src/generated/types/EntityDataSourceVersionDetailRepresentation.d.ts +38 -38
  10. package/dist/{types → es/es2018/types}/src/generated/types/FetchEntityVersionOutputRepresentation.d.ts +31 -31
  11. package/dist/{types → es/es2018/types}/src/generated/types/ReferenceDataEntityRepresentation.d.ts +33 -33
  12. package/dist/{types → es/es2018/types}/src/generated/types/ReferenceDataSourceRepresentation.d.ts +39 -39
  13. package/dist/{types → es/es2018/types}/src/generated/types/ReferenceDataVersionRepresentation.d.ts +56 -56
  14. package/dist/{types → es/es2018/types}/src/generated/types/UploadEntityVersionInputRepresentation.d.ts +30 -30
  15. package/dist/{types → es/es2018/types}/src/generated/types/UploadEntityVersionInputWrapperRepresentation.d.ts +29 -29
  16. package/dist/{types → es/es2018/types}/src/generated/types/UploadEntityVersionOutputRepresentation.d.ts +42 -42
  17. package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
  18. package/package.json +5 -5
  19. package/sfdc/index.d.ts +1 -1
  20. package/sfdc/index.js +741 -741
  21. package/dist/umd/es2018/industries-sustainability-reference-data-v2.js +0 -758
  22. package/dist/umd/es5/industries-sustainability-reference-data-v2.js +0 -765
@@ -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 = "sustainability-reference-data-v2";
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 = "sustainability-reference-data-v2";
@@ -1,30 +1,30 @@
1
- import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
- import { ResourceRequestConfig as resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig } from '../resources/getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource';
3
- import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
4
- import { FetchEntityVersionOutputRepresentation as types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation } from '../types/FetchEntityVersionOutputRepresentation';
5
- export declare const adapterName = "getEntityVersion";
6
- export declare const getEntityVersion_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
- export interface GetEntityVersionConfig {
8
- entitySection: string;
9
- referenceDataSource: string;
10
- loadType?: string;
11
- order?: string;
12
- size?: number;
13
- }
14
- export declare function createResourceParams(config: GetEntityVersionConfig): resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig;
15
- export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): string;
16
- export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_NormalizedKeyMetadata;
17
- export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetEntityVersionConfig>): adapter$45$utils_Untrusted<GetEntityVersionConfig>;
18
- export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetEntityVersionConfig | null;
19
- export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_Fragment;
20
- export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
21
- export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, resourceParams: resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): Promise<import("@luvio/engine").PendingSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any> | import("@luvio/engine").FulfilledSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}>>;
22
- export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, resourceParams: resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
23
- export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
24
- export type BuildSnapshotContext = {
25
- luvio: $64$luvio_engine_Luvio;
26
- config: GetEntityVersionConfig;
27
- };
28
- export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
29
- export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
30
- export declare const getEntityVersionAdapterFactory: $64$luvio_engine_AdapterFactory<GetEntityVersionConfig, types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>;
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { ResourceRequestConfig as resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig } from '../resources/getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource';
3
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
4
+ import { FetchEntityVersionOutputRepresentation as types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation } from '../types/FetchEntityVersionOutputRepresentation';
5
+ export declare const adapterName = "getEntityVersion";
6
+ export declare const getEntityVersion_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
+ export interface GetEntityVersionConfig {
8
+ entitySection: string;
9
+ referenceDataSource: string;
10
+ loadType?: string;
11
+ order?: string;
12
+ size?: number;
13
+ }
14
+ export declare function createResourceParams(config: GetEntityVersionConfig): resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig;
15
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): string;
16
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetEntityVersionConfig>): adapter$45$utils_Untrusted<GetEntityVersionConfig>;
18
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetEntityVersionConfig | null;
19
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_Fragment;
20
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig): $64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
21
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, resourceParams: resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
22
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, resourceParams: resources_getConnectSustainabilityReferenceDataV2EntitySectionDataSourceVersionByEntitySectionAndReferenceDataSource_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
23
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEntityVersionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
24
+ export type BuildSnapshotContext = {
25
+ luvio: $64$luvio_engine_Luvio;
26
+ config: GetEntityVersionConfig;
27
+ };
28
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>>;
29
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_Snapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
30
+ export declare const getEntityVersionAdapterFactory: $64$luvio_engine_AdapterFactory<GetEntityVersionConfig, types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>;
@@ -1,15 +1,15 @@
1
- import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
- import { UploadEntityVersionInputRepresentation as types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from '../types/UploadEntityVersionInputRepresentation';
3
- import { ResourceRequestConfig as resources_putConnectSustainabilityReferenceDataV2EntityVersionUpload_ResourceRequestConfig } from '../resources/putConnectSustainabilityReferenceDataV2EntityVersionUpload';
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 { UploadEntityVersionOutputRepresentation as types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation } from '../types/UploadEntityVersionOutputRepresentation';
6
- export declare const adapterName = "uploadEntityVersion";
7
- export declare const uploadEntityVersion_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
- export interface UploadEntityVersionConfig {
9
- uploadEntityInput: types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
10
- }
11
- export declare function createResourceParams(config: UploadEntityVersionConfig): resources_putConnectSustainabilityReferenceDataV2EntityVersionUpload_ResourceRequestConfig;
12
- export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UploadEntityVersionConfig>): adapter$45$utils_Untrusted<UploadEntityVersionConfig>;
13
- export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UploadEntityVersionConfig | null;
14
- export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UploadEntityVersionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, any>>;
15
- export declare const uploadEntityVersionAdapterFactory: $64$luvio_engine_AdapterFactory<UploadEntityVersionConfig, types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation>;
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { UploadEntityVersionInputRepresentation as types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from '../types/UploadEntityVersionInputRepresentation';
3
+ import { ResourceRequestConfig as resources_putConnectSustainabilityReferenceDataV2EntityVersionUpload_ResourceRequestConfig } from '../resources/putConnectSustainabilityReferenceDataV2EntityVersionUpload';
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 { UploadEntityVersionOutputRepresentation as types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation } from '../types/UploadEntityVersionOutputRepresentation';
6
+ export declare const adapterName = "uploadEntityVersion";
7
+ export declare const uploadEntityVersion_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface UploadEntityVersionConfig {
9
+ uploadEntityInput: types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
10
+ }
11
+ export declare function createResourceParams(config: UploadEntityVersionConfig): resources_putConnectSustainabilityReferenceDataV2EntityVersionUpload_ResourceRequestConfig;
12
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UploadEntityVersionConfig>): adapter$45$utils_Untrusted<UploadEntityVersionConfig>;
13
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UploadEntityVersionConfig | null;
14
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UploadEntityVersionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, any>>;
15
+ export declare const uploadEntityVersionAdapterFactory: $64$luvio_engine_AdapterFactory<UploadEntityVersionConfig, types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation>;
@@ -1,2 +1,2 @@
1
- export { getEntityVersionAdapterFactory } from '../adapters/getEntityVersion';
2
- export { uploadEntityVersionAdapterFactory } from '../adapters/uploadEntityVersion';
1
+ export { getEntityVersionAdapterFactory } from '../adapters/getEntityVersion';
2
+ export { uploadEntityVersionAdapterFactory } from '../adapters/uploadEntityVersion';
@@ -1,4 +1,4 @@
1
- declare let getEntityVersion: any;
2
- declare let uploadEntityVersion: any;
3
- declare let getEntityVersion_imperative: any;
4
- export { getEntityVersion, uploadEntityVersion, getEntityVersion_imperative };
1
+ declare let getEntityVersion: any;
2
+ declare let uploadEntityVersion: any;
3
+ declare let getEntityVersion_imperative: any;
4
+ export { getEntityVersion, uploadEntityVersion, getEntityVersion_imperative };
@@ -1,21 +1,21 @@
1
- import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
- import { FetchEntityVersionOutputRepresentation as types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation } from '../types/FetchEntityVersionOutputRepresentation';
3
- export interface ResourceRequestConfig {
4
- urlParams: {
5
- entitySection: string;
6
- referenceDataSource: string;
7
- };
8
- queryParams: {
9
- loadType?: string;
10
- order?: string;
11
- size?: number;
12
- };
13
- }
14
- export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
15
- export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
16
- export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
17
- export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
18
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
19
- export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
20
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
21
- export default createResourceRequest;
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ import { FetchEntityVersionOutputRepresentation as types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation } from '../types/FetchEntityVersionOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ entitySection: string;
6
+ referenceDataSource: string;
7
+ };
8
+ queryParams: {
9
+ loadType?: string;
10
+ order?: string;
11
+ size?: number;
12
+ };
13
+ }
14
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
15
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
16
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
18
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation, any>;
19
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FetchEntityVersionOutputRepresentation_FetchEntityVersionOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
20
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
21
+ export default createResourceRequest;
@@ -1,13 +1,13 @@
1
- import { UploadEntityVersionInputRepresentation as types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from '../types/UploadEntityVersionInputRepresentation';
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 { UploadEntityVersionOutputRepresentation as types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation } from '../types/UploadEntityVersionOutputRepresentation';
4
- export interface ResourceRequestConfig {
5
- body: {
6
- uploadEntityInput: types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
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_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, any>;
12
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
13
- export default createResourceRequest;
1
+ import { UploadEntityVersionInputRepresentation as types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation } from '../types/UploadEntityVersionInputRepresentation';
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 { UploadEntityVersionOutputRepresentation as types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation } from '../types/UploadEntityVersionOutputRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ body: {
6
+ uploadEntityInput: types_UploadEntityVersionInputRepresentation_UploadEntityVersionInputRepresentation;
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_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_UploadEntityVersionOutputRepresentation_UploadEntityVersionOutputRepresentation, any>;
12
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
13
+ export default createResourceRequest;
@@ -1,38 +1,38 @@
1
- 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';
2
- export declare const VERSION = "528a8d4483b8f8eec20b78daccbf0906";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: EntityDataSourceVersionDetailRepresentation, existing: EntityDataSourceVersionDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EntityDataSourceVersionDetailRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: EntityDataSourceVersionDetailRepresentationNormalized, incoming: EntityDataSourceVersionDetailRepresentationNormalized): boolean;
8
- export declare function deepFreeze(input: EntityDataSourceVersionDetailRepresentation): void;
9
- export declare const ingest: $64$luvio_engine_ResourceIngest;
10
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: EntityDataSourceVersionDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
- /**
12
- * Upload Entity Version Input
13
- *
14
- * Keys:
15
- * (none)
16
- */
17
- export interface EntityDataSourceVersionDetailRepresentationNormalized {
18
- /** Data Source Name */
19
- dataSource: string;
20
- /** Entity Section Name */
21
- entitySection: string;
22
- /** RecordTypeId */
23
- recordTypeId: string;
24
- /** Version */
25
- version: string;
26
- }
27
- /**
28
- * Upload Entity Version Input
29
- *
30
- * Keys:
31
- * (none)
32
- */
33
- export interface EntityDataSourceVersionDetailRepresentation {
34
- dataSource: string;
35
- entitySection: string;
36
- recordTypeId: string;
37
- version: string;
38
- }
1
+ 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';
2
+ export declare const VERSION = "528a8d4483b8f8eec20b78daccbf0906";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EntityDataSourceVersionDetailRepresentation, existing: EntityDataSourceVersionDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EntityDataSourceVersionDetailRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EntityDataSourceVersionDetailRepresentationNormalized, incoming: EntityDataSourceVersionDetailRepresentationNormalized): boolean;
8
+ export declare function deepFreeze(input: EntityDataSourceVersionDetailRepresentation): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: EntityDataSourceVersionDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Upload Entity Version Input
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface EntityDataSourceVersionDetailRepresentationNormalized {
18
+ /** Data Source Name */
19
+ dataSource: string;
20
+ /** Entity Section Name */
21
+ entitySection: string;
22
+ /** RecordTypeId */
23
+ recordTypeId: string;
24
+ /** Version */
25
+ version: string;
26
+ }
27
+ /**
28
+ * Upload Entity Version Input
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface EntityDataSourceVersionDetailRepresentation {
34
+ dataSource: string;
35
+ entitySection: string;
36
+ recordTypeId: string;
37
+ version: string;
38
+ }
@@ -1,31 +1,31 @@
1
- import { ReferenceDataEntityRepresentation as ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation } from './ReferenceDataEntityRepresentation';
2
- 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';
3
- export declare const TTL = 300;
4
- export declare const VERSION = "128a41ea06afa49c7b4c5d421747be7a";
5
- export declare function validate(obj: any, path?: string): TypeError | null;
6
- export declare const RepresentationType: string;
7
- export declare function normalize(input: FetchEntityVersionOutputRepresentation, existing: FetchEntityVersionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FetchEntityVersionOutputRepresentationNormalized;
8
- export declare const select: () => $64$luvio_engine_BaseFragment;
9
- export declare function equals(existing: FetchEntityVersionOutputRepresentationNormalized, incoming: FetchEntityVersionOutputRepresentationNormalized): boolean;
10
- export declare function deepFreeze(input: FetchEntityVersionOutputRepresentation): void;
11
- export declare const ingest: $64$luvio_engine_ResourceIngest;
12
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FetchEntityVersionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
13
- /**
14
- * Entity Version Output Representation
15
- *
16
- * Keys:
17
- * (none)
18
- */
19
- export interface FetchEntityVersionOutputRepresentationNormalized {
20
- /** List of Reference data entity sections */
21
- referenceDataEntityRepresentation: Array<ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation>;
22
- }
23
- /**
24
- * Entity Version Output Representation
25
- *
26
- * Keys:
27
- * (none)
28
- */
29
- export interface FetchEntityVersionOutputRepresentation {
30
- referenceDataEntityRepresentation: Array<ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation>;
31
- }
1
+ import { ReferenceDataEntityRepresentation as ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation } from './ReferenceDataEntityRepresentation';
2
+ 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';
3
+ export declare const TTL = 300;
4
+ export declare const VERSION = "128a41ea06afa49c7b4c5d421747be7a";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: FetchEntityVersionOutputRepresentation, existing: FetchEntityVersionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FetchEntityVersionOutputRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
9
+ export declare function equals(existing: FetchEntityVersionOutputRepresentationNormalized, incoming: FetchEntityVersionOutputRepresentationNormalized): boolean;
10
+ export declare function deepFreeze(input: FetchEntityVersionOutputRepresentation): void;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FetchEntityVersionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
13
+ /**
14
+ * Entity Version Output Representation
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface FetchEntityVersionOutputRepresentationNormalized {
20
+ /** List of Reference data entity sections */
21
+ referenceDataEntityRepresentation: Array<ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation>;
22
+ }
23
+ /**
24
+ * Entity Version Output Representation
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface FetchEntityVersionOutputRepresentation {
30
+ referenceDataEntityRepresentation: Array<ReferenceDataEntityRepresentation_ReferenceDataEntityRepresentation>;
31
+ }
@@ -1,33 +1,33 @@
1
- import { ReferenceDataSourceRepresentation as ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation } from './ReferenceDataSourceRepresentation';
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 = "adbbbd77faa573054c273c22251ad1ab";
4
- export declare function validate(obj: any, path?: string): TypeError | null;
5
- export declare const RepresentationType: string;
6
- export declare function normalize(input: ReferenceDataEntityRepresentation, existing: ReferenceDataEntityRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceDataEntityRepresentationNormalized;
7
- export declare const select: () => $64$luvio_engine_FragmentSelection;
8
- export declare function equals(existing: ReferenceDataEntityRepresentationNormalized, incoming: ReferenceDataEntityRepresentationNormalized): boolean;
9
- export declare function deepFreeze(input: ReferenceDataEntityRepresentation): void;
10
- export declare const ingest: $64$luvio_engine_ResourceIngest;
11
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ReferenceDataEntityRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
- /**
13
- * Reference Data Entity Section Information
14
- *
15
- * Keys:
16
- * (none)
17
- */
18
- export interface ReferenceDataEntityRepresentationNormalized {
19
- /** Entity section name */
20
- entityName: string;
21
- /** List of Reference data sources for the entity section */
22
- referenceDataSourceRepresentation: Array<ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation>;
23
- }
24
- /**
25
- * Reference Data Entity Section Information
26
- *
27
- * Keys:
28
- * (none)
29
- */
30
- export interface ReferenceDataEntityRepresentation {
31
- entityName: string;
32
- referenceDataSourceRepresentation: Array<ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation>;
33
- }
1
+ import { ReferenceDataSourceRepresentation as ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation } from './ReferenceDataSourceRepresentation';
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 = "adbbbd77faa573054c273c22251ad1ab";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ReferenceDataEntityRepresentation, existing: ReferenceDataEntityRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceDataEntityRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ReferenceDataEntityRepresentationNormalized, incoming: ReferenceDataEntityRepresentationNormalized): boolean;
9
+ export declare function deepFreeze(input: ReferenceDataEntityRepresentation): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ReferenceDataEntityRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * Reference Data Entity Section Information
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ReferenceDataEntityRepresentationNormalized {
19
+ /** Entity section name */
20
+ entityName: string;
21
+ /** List of Reference data sources for the entity section */
22
+ referenceDataSourceRepresentation: Array<ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation>;
23
+ }
24
+ /**
25
+ * Reference Data Entity Section Information
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ReferenceDataEntityRepresentation {
31
+ entityName: string;
32
+ referenceDataSourceRepresentation: Array<ReferenceDataSourceRepresentation_ReferenceDataSourceRepresentation>;
33
+ }